CoreXLSX Documentation Beta

Structure Worksheet

public struct Worksheet: Codable
%3 Worksheet Worksheet Codable Codable Worksheet->Codable

Nested Types

Worksheet.Properties
Worksheet.Data
Worksheet.FormatProperties
Worksheet.Dimension

Conforms To

Codable

Properties

sheet​Pr

var sheetPr: SheetPr?

properties

let properties: Properties?

dimension

let dimension: Dimension?

sheet​Views

let sheetViews: SheetViews?

sheet​Format​Pr

var sheetFormatPr: SheetFormatPr

format​Properties

let formatProperties: FormatProperties?

columns

let columns: Columns?

cols

var cols: Cols?

data

let data: Data?

sheet​Data

var sheetData: SheetData

merge​Cells

let mergeCells: MergeCells?

Methods

cells(at​Columns:​)

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(at​Rows:​)

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(at​Columns:​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.