Structure
Worksheet
public struct Worksheet: Codable
Relationships
Nested Types
Worksheet.Properties
Worksheet.Data
Worksheet.FormatProperties
Worksheet.Dimension
Conforms To
Codable
Properties
sheetPr
var sheetPr: SheetPr?
properties
let properties: Properties?
sheetViews
let sheetViews: SheetViews?
sheetFormatPr
var sheetFormatPr: SheetFormatPr
formatProperties
let formatProperties: FormatProperties?
columns
let columns: Columns?
cols
var cols: Cols?
data
let data: Data?
sheetData
var sheetData: SheetData
mergeCells
let mergeCells: MergeCells?
Methods
cells(atColumns:)
func cells<T>(atColumns columns: T) -> [Cell] where T: Collection, T.Element == ColumnReference
Return all cells that are contained in a given worksheet and collection of columns.
cells(atRows:)
func cells<T>(atRows rows: T) -> [Cell] where T: Collection, T.Element == UInt
Return all cells that are contained in a given worksheet and collection of rows.
cells(atColumns:rows:)
func cells<T1, T2>(atColumns columns: T1, rows: T2) -> [Cell] where T1: Collection, T1.Element == ColumnReference, T2: Collection, T2.Element == UInt
Return all cells that are contained in a given worksheet and collections of rows and columns.