@@ -23,6 +23,8 @@ type xlsxWorksheet struct {
23
23
PageSetUp xlsxPageSetUp `xml:"pageSetup"`
24
24
HeaderFooter xlsxHeaderFooter `xml:"headerFooter"`
25
25
Drawing xlsxDrawing `xml:"drawing"`
26
+ Picture xlsxPicture `xml:"picture"`
27
+ TableParts xlsxTableParts `xml:"tableParts"`
26
28
}
27
29
28
30
// xlsxDrawing change r:id to rid in the namespace.
@@ -292,3 +294,59 @@ type xlsxHyperlink struct {
292
294
Display string `xml:"display,attr,omitempty"`
293
295
RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
294
296
}
297
+
298
+ // xlsxTableParts directly maps the tableParts element in the namespace
299
+ // http://schemas.openxmlformats.org/spreadsheetml/2006/main -
300
+ // The table element has several attributes applied to identify the table
301
+ // and the data range it covers. The table id attribute needs to be unique
302
+ // across all table parts, the same goes for the name and displayName. The
303
+ // displayName has the further restriction that it must be unique across
304
+ // all defined names in the workbook. Later on we will see that you can
305
+ // define names for many elements, such as cells or formulas. The name
306
+ // value is used for the object model in Microsoft Office Excel. The
307
+ // displayName is used for references in formulas. The ref attribute is
308
+ // used to identify the cell range that the table covers. This includes
309
+ // not only the table data, but also the table header containing column
310
+ // names.
311
+ // To add columns to your table you add new tableColumn elements to the
312
+ // tableColumns container. Similar to the shared string table the
313
+ // collection keeps a count attribute identifying the number of columns.
314
+ // Besides the table definition in the table part there is also the need
315
+ // to identify which tables are displayed in the worksheet. The worksheet
316
+ // part has a separate element tableParts to store this information. Each
317
+ // table part is referenced through the relationship ID and again a count
318
+ // of the number of table parts is maintained. The following markup sample
319
+ // is taken from the documents accompanying this book. The sheet data
320
+ // element has been removed to reduce the size of the sample. To reference
321
+ // the table, just add the tableParts element, of course after having
322
+ // created and stored the table part.
323
+ // Example:
324
+ //
325
+ // <worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
326
+ // ...
327
+ // <tableParts count="1">
328
+ // <tablePart r:id="rId1" />
329
+ // </tableParts>
330
+ // </worksheet>
331
+ //
332
+ type xlsxTableParts struct {
333
+ Count int `xml:"count,attr"`
334
+ TableParts []xlsxTablePart `xml:"tablePart"`
335
+ }
336
+
337
+ // xlsxTablePart directly maps the tablePart element in the namespace
338
+ // http://schemas.openxmlformats.org/spreadsheetml/2006/main
339
+ type xlsxTablePart struct {
340
+ RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
341
+ }
342
+
343
+ // xlsxPicture directly maps the picture element in the namespace
344
+ // http://schemas.openxmlformats.org/spreadsheetml/2006/main -
345
+ // Background sheet image.
346
+ // Example:
347
+ //
348
+ // <picture r:id="rId1"/>
349
+ //
350
+ type xlsxPicture struct {
351
+ RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"` // Relationship Id pointing to the image part.
352
+ }
0 commit comments