如何使用XML电子表格参考

时间:2018-08-28 12:00:40

标签: javascript excel xml spreadsheet

我正在使用'https://docs.microsoft.com/en-us/previous-versions/office/developer/office-xp/aa140066(v=office.10)#odc_xmlss_ss:column'

创建excel

我想使用XML Spreadsheet标签在excel中添加图像。

但是我没有找到任何标签。

下面是我的xml

<Workbook xmlns="" xmlns:ss="test">
  <DocumentProperties xmlns="">
    <Author>Test</Author>
    <Created>11</Created>
  </DocumentProperties>
  <Styles>
    <ss:Style ss:ID="Bold">
      <ss:Font ss:Bold="1" ss:Color="#FFFFFF"/>
      <Interior ss:Color="#455560" ss:Pattern="Solid"/>
    </ss:Style>
  </Styles>
  <Worksheet ss:Name="tab0">
    <Table>
      <Column ss:StyleID="Bold" ss:AutoFitWidth="0" ss:Width="150"/>
      <Row>
        <Cell ss:StyleID="Bold">
          <Data ss:Type="String">Test Cell</Data>
        </Cell>
      </Row>
      <Row></Row>
    </Table>
  </Worksheet>
</Workbook>

0 个答案:

没有答案