xmlWorksheet.go 20.8 KB
Newer Older
xurime's avatar
xurime 已提交
1 2
package excelize

3
import "encoding/xml"
xurime's avatar
xurime 已提交
4 5

// xlsxWorksheet directly maps the worksheet element in the namespace
6 7
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
xurime's avatar
xurime 已提交
8
type xlsxWorksheet struct {
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
	XMLName               xml.Name                   `xml:"http://schemas.openxmlformats.org/spreadsheetml/2006/main worksheet"`
	SheetPr               *xlsxSheetPr               `xml:"sheetPr"`
	Dimension             xlsxDimension              `xml:"dimension"`
	SheetViews            xlsxSheetViews             `xml:"sheetViews"`
	SheetFormatPr         *xlsxSheetFormatPr         `xml:"sheetFormatPr"`
	Cols                  *xlsxCols                  `xml:"cols,omitempty"`
	SheetData             xlsxSheetData              `xml:"sheetData"`
	SheetProtection       *xlsxSheetProtection       `xml:"sheetProtection"`
	MergeCells            *xlsxMergeCells            `xml:"mergeCells,omitempty"`
	ConditionalFormatting *xlsxConditionalFormatting `xml:"conditionalFormatting"`
	Hyperlinks            *xlsxHyperlinks            `xml:"hyperlinks"`
	PrintOptions          *xlsxPrintOptions          `xml:"printOptions"`
	PageMargins           *xlsxPageMargins           `xml:"pageMargins"`
	PageSetUp             *xlsxPageSetUp             `xml:"pageSetup"`
	HeaderFooter          *xlsxHeaderFooter          `xml:"headerFooter"`
	Drawing               *xlsxDrawing               `xml:"drawing"`
	LegacyDrawing         *xlsxLegacyDrawing         `xml:"legacyDrawing"`
	Picture               *xlsxPicture               `xml:"picture"`
	TableParts            *xlsxTableParts            `xml:"tableParts"`
	ExtLst                *xlsxExtLst                `xml:"extLst"`
xurime's avatar
xurime 已提交
29 30
}

xurime's avatar
xurime 已提交
31
// xlsxDrawing change r:id to rid in the namespace.
xurime's avatar
xurime 已提交
32
type xlsxDrawing struct {
33
	RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
xurime's avatar
xurime 已提交
34 35 36
}

// xlsxHeaderFooter directly maps the headerFooter element in the namespace
37 38 39 40 41 42
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - When printed or
// viewed in page layout view (§18.18.69), each page of a worksheet can have a
// page header, a page footer, or both. The headers and footers on odd-numbered
// pages can differ from those on even-numbered pages, and the headers and
// footers on the first page can differ from those on odd- and even-numbered
// pages. In the latter case, the first page is not considered an odd page.
xurime's avatar
xurime 已提交
43
type xlsxHeaderFooter struct {
44 45 46 47
	DifferentFirst   bool             `xml:"differentFirst,attr,omitempty"`
	DifferentOddEven bool             `xml:"differentOddEven,attr,omitempty"`
	OddHeader        []*xlsxOddHeader `xml:"oddHeader"`
	OddFooter        []*xlsxOddFooter `xml:"oddFooter"`
xurime's avatar
xurime 已提交
48 49 50
}

// xlsxOddHeader directly maps the oddHeader element in the namespace
51 52
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
xurime's avatar
xurime 已提交
53 54 55 56 57
type xlsxOddHeader struct {
	Content string `xml:",chardata"`
}

// xlsxOddFooter directly maps the oddFooter element in the namespace
58 59
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
xurime's avatar
xurime 已提交
60 61 62 63 64
type xlsxOddFooter struct {
	Content string `xml:",chardata"`
}

// xlsxPageSetUp directly maps the pageSetup element in the namespace
65 66
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - Page setup
// settings for the worksheet.
xurime's avatar
xurime 已提交
67
type xlsxPageSetUp struct {
68
	BlackAndWhite      bool    `xml:"blackAndWhite,attr,omitempty"`
xurime's avatar
xurime 已提交
69
	CellComments       string  `xml:"cellComments,attr,omitempty"`
70 71 72 73 74 75 76 77 78 79
	Copies             int     `xml:"copies,attr,omitempty"`
	Draft              bool    `xml:"draft,attr,omitempty"`
	Errors             string  `xml:"errors,attr,omitempty"`
	FirstPageNumber    int     `xml:"firstPageNumber,attr,omitempty"`
	FitToHeight        int     `xml:"fitToHeight,attr,omitempty"`
	FitToWidth         int     `xml:"fitToWidth,attr,omitempty"`
	HorizontalDPI      float32 `xml:"horizontalDpi,attr,omitempty"`
	RID                string  `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
	Orientation        string  `xml:"orientation,attr,omitempty"`
	PageOrder          string  `xml:"pageOrder,attr,omitempty"`
80
	PaperHeight        string  `xml:"paperHeight,attr,omitempty"`
81 82 83 84 85 86
	PaperSize          string  `xml:"paperSize,attr,omitempty"`
	PaperWidth         string  `xml:"paperWidth,attr,omitempty"`
	Scale              int     `xml:"scale,attr,omitempty"`
	UseFirstPageNumber bool    `xml:"useFirstPageNumber,attr,omitempty"`
	UsePrinterDefaults bool    `xml:"usePrinterDefaults,attr,omitempty"`
	VerticalDPI        float32 `xml:"verticalDpi,attr,omitempty"`
xurime's avatar
xurime 已提交
87 88 89
}

// xlsxPrintOptions directly maps the printOptions element in the namespace
90 91 92
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - Print options for
// the sheet. Printer-specific settings are stored separately in the Printer
// Settings part.
xurime's avatar
xurime 已提交
93
type xlsxPrintOptions struct {
94 95 96 97 98
	GridLines          bool `xml:"gridLines,attr,omitempty"`
	GridLinesSet       bool `xml:"gridLinesSet,attr,omitempty"`
	Headings           bool `xml:"headings,attr,omitempty"`
	HorizontalCentered bool `xml:"horizontalCentered,attr,omitempty"`
	VerticalCentered   bool `xml:"verticalCentered,attr,omitempty"`
xurime's avatar
xurime 已提交
99 100 101
}

// xlsxPageMargins directly maps the pageMargins element in the namespace
102 103
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - Page margins for
// a sheet or a custom sheet view.
xurime's avatar
xurime 已提交
104
type xlsxPageMargins struct {
105 106 107
	Bottom float64 `xml:"bottom,attr"`
	Footer float64 `xml:"footer,attr"`
	Header float64 `xml:"header,attr"`
xurime's avatar
xurime 已提交
108 109 110 111 112 113
	Left   float64 `xml:"left,attr"`
	Right  float64 `xml:"right,attr"`
	Top    float64 `xml:"top,attr"`
}

// xlsxSheetFormatPr directly maps the sheetFormatPr element in the namespace
114 115
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
xurime's avatar
xurime 已提交
116 117 118
type xlsxSheetFormatPr struct {
	DefaultColWidth  float64 `xml:"defaultColWidth,attr,omitempty"`
	DefaultRowHeight float64 `xml:"defaultRowHeight,attr"`
119 120
	CustomHeight     float64 `xml:"customHeight,attr,omitempty"`
	ZeroHeight       float64 `xml:"zeroHeight,attr,omitempty"`
xurime's avatar
xurime 已提交
121 122 123 124 125
	OutlineLevelCol  uint8   `xml:"outlineLevelCol,attr,omitempty"`
	OutlineLevelRow  uint8   `xml:"outlineLevelRow,attr,omitempty"`
}

// xlsxSheetViews directly maps the sheetViews element in the namespace
126 127
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - Worksheet views
// collection.
xurime's avatar
xurime 已提交
128 129 130 131 132
type xlsxSheetViews struct {
	SheetView []xlsxSheetView `xml:"sheetView"`
}

// xlsxSheetView directly maps the sheetView element in the namespace
133 134 135 136 137 138 139 140
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need. A single sheet
// view definition. When more than one sheet view is defined in the file, it
// means that when opening the workbook, each sheet view corresponds to a
// separate window within the spreadsheet application, where each window is
// showing the particular sheet containing the same workbookViewId value, the
// last sheetView definition is loaded, and the others are discarded. When
// multiple windows are viewing the same sheet, multiple sheetView elements
141
// (with corresponding workbookView entries) are saved.
xurime's avatar
xurime 已提交
142
type xlsxSheetView struct {
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
	WindowProtection        bool             `xml:"windowProtection,attr,omitempty"`
	ShowFormulas            bool             `xml:"showFormulas,attr,omitempty"`
	ShowGridLines           string           `xml:"showGridLines,attr,omitempty"`
	ShowRowColHeaders       bool             `xml:"showRowColHeaders,attr,omitempty"`
	ShowZeros               bool             `xml:"showZeros,attr,omitempty"`
	RightToLeft             bool             `xml:"rightToLeft,attr,omitempty"`
	TabSelected             bool             `xml:"tabSelected,attr,omitempty"`
	ShowOutlineSymbols      bool             `xml:"showOutlineSymbols,attr,omitempty"`
	DefaultGridColor        bool             `xml:"defaultGridColor,attr"`
	View                    string           `xml:"view,attr,omitempty"`
	TopLeftCell             string           `xml:"topLeftCell,attr,omitempty"`
	ColorID                 int              `xml:"colorId,attr,omitempty"`
	ZoomScale               float64          `xml:"zoomScale,attr,omitempty"`
	ZoomScaleNormal         float64          `xml:"zoomScaleNormal,attr,omitempty"`
	ZoomScalePageLayoutView float64          `xml:"zoomScalePageLayoutView,attr,omitempty"`
	WorkbookViewID          int              `xml:"workbookViewId,attr"`
	Pane                    *xlsxPane        `xml:"pane,omitempty"`
	Selection               []*xlsxSelection `xml:"selection"`
xurime's avatar
xurime 已提交
161 162 163
}

// xlsxSelection directly maps the selection element in the namespace
164 165
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - Worksheet view
// selection.
xurime's avatar
xurime 已提交
166
type xlsxSelection struct {
167
	ActiveCell   string `xml:"activeCell,attr,omitempty"`
xurime's avatar
xurime 已提交
168
	ActiveCellID int    `xml:"activeCellId,attr"`
169
	Pane         string `xml:"pane,attr,omitempty"`
170
	SQRef        string `xml:"sqref,attr,omitempty"`
xurime's avatar
xurime 已提交
171 172
}

173
// xlsxSelection directly maps the selection element. Worksheet view pane.
xurime's avatar
xurime 已提交
174 175 176
type xlsxPane struct {
	ActivePane  string  `xml:"activePane,attr,omitempty"`
	State       string  `xml:"state,attr,omitempty"` // Either "split" or "frozen"
177 178 179
	TopLeftCell string  `xml:"topLeftCell,attr,omitempty"`
	XSplit      float64 `xml:"xSplit,attr,omitempty"`
	YSplit      float64 `xml:"ySplit,attr,omitempty"`
xurime's avatar
xurime 已提交
180 181 182
}

// xlsxSheetPr directly maps the sheetPr element in the namespace
183 184
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - Sheet-level
// properties.
xurime's avatar
xurime 已提交
185
type xlsxSheetPr struct {
186 187 188 189 190 191 192 193 194 195
	XMLName                           xml.Name         `xml:"sheetPr"`
	CodeName                          string           `xml:"codeName,attr,omitempty"`
	EnableFormatConditionsCalculation bool             `xml:"enableFormatConditionsCalculation,attr,omitempty"`
	FilterMode                        bool             `xml:"filterMode,attr,omitempty"`
	Published                         bool             `xml:"published,attr,omitempty"`
	SyncHorizontal                    bool             `xml:"syncHorizontal,attr,omitempty"`
	SyncVertical                      bool             `xml:"syncVertical,attr,omitempty"`
	TransitionEntry                   bool             `xml:"transitionEntry,attr,omitempty"`
	TabColor                          *xlsxTabColor    `xml:"tabColor,omitempty"`
	PageSetUpPr                       *xlsxPageSetUpPr `xml:"pageSetUpPr,omitempty"`
xurime's avatar
xurime 已提交
196 197 198
}

// xlsxPageSetUpPr directly maps the pageSetupPr element in the namespace
199 200
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - Page setup
// properties of the worksheet.
xurime's avatar
xurime 已提交
201
type xlsxPageSetUpPr struct {
202 203
	AutoPageBreaks bool `xml:"autoPageBreaks,attr,omitempty"`
	FitToPage      bool `xml:"fitToPage,attr,omitempty"` // Flag indicating whether the Fit to Page print option is enabled.
204 205
}

206 207
// xlsxTabColor directly maps the tabColor element in the namespace currently I
// have not checked it for completeness - it does as much as I need.
208
type xlsxTabColor struct {
209 210
	Theme int   `xml:"theme,attr,omitempty"`
	Tint  uint8 `xml:"tint,attr,omitempty"`
xurime's avatar
xurime 已提交
211 212 213
}

// xlsxCols directly maps the cols element in the namespace
214 215
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
xurime's avatar
xurime 已提交
216 217 218 219
type xlsxCols struct {
	Col []xlsxCol `xml:"col"`
}

220 221
// xlsxCol directly maps the col (Column Width & Formatting). Defines column
// width and column formatting for one or more columns of the worksheet.
xurime's avatar
xurime 已提交
222
type xlsxCol struct {
223
	BestFit      bool    `xml:"bestFit,attr,omitempty"`
xurime's avatar
xurime 已提交
224
	Collapsed    bool    `xml:"collapsed,attr"`
225
	CustomWidth  bool    `xml:"customWidth,attr,omitempty"`
xurime's avatar
xurime 已提交
226 227 228
	Hidden       bool    `xml:"hidden,attr"`
	Max          int     `xml:"max,attr"`
	Min          int     `xml:"min,attr"`
229 230
	OutlineLevel uint8   `xml:"outlineLevel,attr,omitempty"`
	Phonetic     bool    `xml:"phonetic,attr,omitempty"`
xurime's avatar
xurime 已提交
231 232 233 234 235
	Style        int     `xml:"style,attr"`
	Width        float64 `xml:"width,attr"`
}

// xlsxDimension directly maps the dimension element in the namespace
236 237 238 239 240 241
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - This element
// specifies the used range of the worksheet. It specifies the row and column
// bounds of used cells in the worksheet. This is optional and is not required.
// Used cells include cells with formulas, text content, and cell formatting.
// When an entire column is formatted, only the first cell in that column is
// considered used.
xurime's avatar
xurime 已提交
242 243 244 245 246
type xlsxDimension struct {
	Ref string `xml:"ref,attr"`
}

// xlsxSheetData directly maps the sheetData element in the namespace
247 248
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
xurime's avatar
xurime 已提交
249 250 251 252 253
type xlsxSheetData struct {
	XMLName xml.Name  `xml:"sheetData"`
	Row     []xlsxRow `xml:"row"`
}

254
// xlsxRow directly maps the row element. The element expresses information
255 256
// about an entire row of a worksheet, and contains all cell definitions for a
// particular row in the worksheet.
xurime's avatar
xurime 已提交
257
type xlsxRow struct {
258 259 260
	Collapsed    bool    `xml:"collapsed,attr,omitempty"`
	CustomFormat bool    `xml:"customFormat,attr,omitempty"`
	CustomHeight bool    `xml:"customHeight,attr,omitempty"`
xurime's avatar
xurime 已提交
261 262 263
	Hidden       bool    `xml:"hidden,attr,omitempty"`
	Ht           string  `xml:"ht,attr,omitempty"`
	OutlineLevel uint8   `xml:"outlineLevel,attr,omitempty"`
264 265 266 267 268 269 270
	Ph           bool    `xml:"ph,attr,omitempty"`
	R            int     `xml:"r,attr,omitempty"`
	S            int     `xml:"s,attr,omitempty"`
	Spans        string  `xml:"spans,attr,omitempty"`
	ThickBot     bool    `xml:"thickBot,attr,omitempty"`
	ThickTop     bool    `xml:"thickTop,attr,omitempty"`
	C            []xlsxC `xml:"c"`
xurime's avatar
xurime 已提交
271 272
}

273
// xlsxMergeCell directly maps the mergeCell element. A single merged cell.
xurime's avatar
xurime 已提交
274
type xlsxMergeCell struct {
275
	Ref string `xml:"ref,attr,omitempty"`
xurime's avatar
xurime 已提交
276 277
}

278 279
// xlsxMergeCells directly maps the mergeCells element. This collection
// expresses all the merged cells in the sheet.
xurime's avatar
xurime 已提交
280
type xlsxMergeCells struct {
281 282
	Count int              `xml:"count,attr,omitempty"`
	Cells []*xlsxMergeCell `xml:"mergeCell,omitempty"`
xurime's avatar
xurime 已提交
283 284 285
}

// xlsxC directly maps the c element in the namespace
286 287
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
xurime's avatar
xurime 已提交
288 289 290 291 292 293 294 295 296 297
type xlsxC struct {
	R string `xml:"r,attr"`           // Cell ID, e.g. A1
	S int    `xml:"s,attr,omitempty"` // Style reference.
	// Str string `xml:"str,attr,omitempty"` // Style reference.
	T string `xml:"t,attr,omitempty"` // Type.
	F *xlsxF `xml:"f,omitempty"`      // Formula
	V string `xml:"v,omitempty"`      // Value
}

// xlsxF directly maps the f element in the namespace
298 299
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
xurime's avatar
xurime 已提交
300 301 302 303
type xlsxF struct {
	Content string `xml:",chardata"`
	T       string `xml:"t,attr,omitempty"`   // Formula type
	Ref     string `xml:"ref,attr,omitempty"` // Shared formula ref
304
	Si      string `xml:"si,attr,omitempty"`  // Shared formula index
xurime's avatar
xurime 已提交
305
}
306

307 308
// xlsxSheetProtection collection expresses the sheet protection options to
// enforce when the sheet is protected.
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
type xlsxSheetProtection struct {
	AlgorithmName      string `xml:"algorithmName,attr,omitempty"`
	AutoFilter         int    `xml:"autoFilter,attr,omitempty"`
	DeleteColumns      int    `xml:"deleteColumns,attr,omitempty"`
	DeleteRows         int    `xml:"deleteRows,attr,omitempty"`
	FormatCells        int    `xml:"formatCells,attr,omitempty"`
	FormatColumns      int    `xml:"formatColumns,attr,omitempty"`
	FormatRows         int    `xml:"formatRows,attr,omitempty"`
	HashValue          string `xml:"hashValue,attr,omitempty"`
	InsertColumns      int    `xml:"insertColumns,attr,omitempty"`
	InsertHyperlinks   int    `xml:"insertHyperlinks,attr,omitempty"`
	InsertRows         int    `xml:"insertRows,attr,omitempty"`
	Objects            int    `xml:"objects,attr,omitempty"`
	PivotTables        int    `xml:"pivotTables,attr,omitempty"`
	SaltValue          string `xml:"saltValue,attr,omitempty"`
	Scenarios          int    `xml:"scenarios,attr,omitempty"`
	SelectLockedCells  int    `xml:"selectLockedCells,attr,omitempty"`
	SelectUnlockedCell int    `xml:"selectUnlockedCell,attr,omitempty"`
	Sheet              int    `xml:"sheet,attr,omitempty"`
	Sort               int    `xml:"sort,attr,omitempty"`
	SpinCount          int    `xml:"spinCount,attr,omitempty"`
}

332 333 334 335
// A Conditional Format is a format, such as cell shading or font color, that a
// spreadsheet application can automatically apply to cells if a specified
// condition is true. This collection expresses conditional formatting rules
// applied to a particular cell or range.
336 337 338 339
type xlsxConditionalFormatting struct {
	CfRule string `xml:",innerxml"`
}

340
// xlsxHyperlinks directly maps the hyperlinks element in the namespace
341 342 343
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - A hyperlink can
// be stored in a package as a relationship. Hyperlinks shall be identified by
// containing a target which specifies the destination of the given hyperlink.
344 345 346 347 348 349 350 351 352 353 354 355
type xlsxHyperlinks struct {
	Hyperlink []xlsxHyperlink `xml:"hyperlink"`
}

// xlsxHyperlink directly maps the hyperlink element in the namespace
// http://schemas.openxmlformats.org/spreadsheetml/2006/main
type xlsxHyperlink struct {
	Ref      string `xml:"ref,attr"`
	Location string `xml:"location,attr,omitempty"`
	Display  string `xml:"display,attr,omitempty"`
	RID      string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
}
356 357

// xlsxTableParts directly maps the tableParts element in the namespace
358 359 360 361 362 363 364 365 366 367
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - The table element
// has several attributes applied to identify the table and the data range it
// covers. The table id attribute needs to be unique across all table parts, the
// same goes for the name and displayName. The displayName has the further
// restriction that it must be unique across all defined names in the workbook.
// Later on we will see that you can define names for many elements, such as
// cells or formulas. The name value is used for the object model in Microsoft
// Office Excel. The displayName is used for references in formulas. The ref
// attribute is used to identify the cell range that the table covers. This
// includes not only the table data, but also the table header containing column
368 369
// names.
// To add columns to your table you add new tableColumn elements to the
370 371 372 373 374 375 376 377 378 379
// tableColumns container. Similar to the shared string table the collection
// keeps a count attribute identifying the number of columns. Besides the table
// definition in the table part there is also the need to identify which tables
// are displayed in the worksheet. The worksheet part has a separate element
// tableParts to store this information. Each table part is referenced through
// the relationship ID and again a count of the number of table parts is
// maintained. The following markup sample is taken from the documents
// accompanying this book. The sheet data element has been removed to reduce the
// size of the sample. To reference the table, just add the tableParts element,
// of course after having created and stored the table part. For example:
380 381 382 383 384 385 386 387 388
//
//    <worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
//        ...
//        <tableParts count="1">
// 		      <tablePart r:id="rId1" />
//        </tableParts>
//    </worksheet>
//
type xlsxTableParts struct {
389 390
	Count      int              `xml:"count,attr,omitempty"`
	TableParts []*xlsxTablePart `xml:"tablePart"`
391 392 393 394 395 396 397 398 399
}

// xlsxTablePart directly maps the tablePart element in the namespace
// http://schemas.openxmlformats.org/spreadsheetml/2006/main
type xlsxTablePart struct {
	RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
}

// xlsxPicture directly maps the picture element in the namespace
400 401
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - Background sheet
// image. For example:
402 403 404 405
//
//    <picture r:id="rId1"/>
//
type xlsxPicture struct {
406
	RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
407
}
xurime's avatar
xurime 已提交
408 409

// xlsxLegacyDrawing directly maps the legacyDrawing element in the namespace
410 411 412 413 414 415 416 417
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - A comment is a
// rich text note that is attached to, and associated with, a cell, separate
// from other cell content. Comment content is stored separate from the cell,
// and is displayed in a drawing object (like a text box) that is separate from,
// but associated with, a cell. Comments are used as reminders, such as noting
// how a complex formula works, or to provide feedback to other users. Comments
// can also be used to explain assumptions made in a formula or to call out
// something special about the cell.
xurime's avatar
xurime 已提交
418 419 420
type xlsxLegacyDrawing struct {
	RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
}