Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Sources/CoreXLSX/Worksheet/Worksheet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,9 @@ public struct Column: Codable, Equatable {

/// Set to `true` when width for related columns differs from the default.
public let customWidth: Bool?

/// Whether the column is hidden or not
public let hidden: Bool?
}

/** The primary storage for spreadsheet cells.
Expand All @@ -227,12 +230,14 @@ public struct Row: Codable {
public let height: Double?
public let customHeight: String?
public let cells: [Cell]
public let hidden: Bool?

enum CodingKeys: String, CodingKey {
case cells = "c"
case reference = "r"
case height = "ht"
case customHeight
case hidden
}
}

Expand Down