Row Class
Contents
[
Hide
]Row class
Represents a single row in a worksheet.
type Row struct {
ptr unsafe.Pointer
}
Constructors
Method | Description |
---|
Methods
Method | Description |
---|---|
IsNull | Checks whether the implementation object is nullptr. |
GetCellByIndex | Get the cell by specific index in the cells collection of this row. |
IsBlank | Indicates whether the row contains any data |
Get | Gets the cell. |
GetCellOrNull | Gets the cell or null in the specific index. |
IsCollapsed | whether the row is collapsed |
SetIsCollapsed | whether the row is collapsed |
GetHeight | Gets and sets the row height in unit of Points. |
SetHeight | Gets and sets the row height in unit of Points. |
IsHidden | Indicates whether the row is hidden. |
SetIsHidden | Indicates whether the row is hidden. |
GetIndex | Gets the index of this row. |
GetGroupLevel | Gets the group level of the row. |
SetGroupLevel | Gets the group level of the row. |
IsHeightMatched | Indicates whether the row height matches current default font setting of the workbook.True of this property also denotes the row height is “automatic” without custom height value set by user. |
SetIsHeightMatched | Indicates whether the row height matches current default font setting of the workbook.True of this property also denotes the row height is “automatic” without custom height value set by user. |
GetStyle | Gets the style of this row. |
SetStyle | Sets the style of this row. |
GetHasCustomStyle | Indicates whether this row has custom style settings(different from the default one inherited from workbook). |
CopySettings | Copy settings of row, such as style, height, visibility, …etc. |
GetFirstCell | Gets the first cell object in the row. |
GetFirstDataCell | Gets the first non-blank cell in the row. |
GetLastCell | Gets the last cell object in the row. |
GetLastDataCell | Gets the last non-blank cell in the row. |
ApplyStyle | Applies formats for a whole row. |
Equals_Object | Checks whether this object refers to the same row with another. |
Equals_Row | Checks whether this object refers to the same row with another row object. |