Property Getters/Setters Summary | ||
---|---|---|
function | getFirstCell() | |
Gets the first cell object in the row.
|
||
function | getFirstDataCell() | |
Gets the first non-blank cell in the row.
|
||
function | getGroupLevel() | |
Gets the group level of the row.
|
||
function | getHeight() | |
function | setHeight(value) | |
Gets and sets the row height in unit of Points. | ||
function | getIndex() | |
Gets the index of this row.
|
||
function | isBlank() | |
Indicates whether the row contains any data
|
||
function | isCollapsed() | |
function | setCollapsed(value) | |
whether the row is collapsed | ||
function | isHeightMatched() | |
function | setHeightMatched(value) | |
Indicates that row height and default font height matches. | ||
function | isHidden() | |
function | setHidden(value) | |
Indicates whether the row is hidden. | ||
function | getLastCell() | |
Gets the last cell object in the row.
|
||
function | getLastDataCell() | |
Gets the last non-blank cell in the row.
|
||
function | getStyle() | |
Represents the style of this row.
|
||
function | get(column) | |
Gets the cell.
|
Method Summary | ||
---|---|---|
function | applyStyle(style, flag) | |
Applies formats for a whole row.
|
||
function | copySettings(source, checkStyle) | |
Copy settings of row, such as style, height, visibility, ...etc.
|
||
function | equals(row) | |
Checks whether this object refers to the same row with another row object.
|
||
function | equals(obj) | |
Checks whether this object refers to the same row with another.
|
||
function | getCellByIndex(index) | |
Get the cell by specific index in the list.
|
||
function | getCellOrNull(column) | |
Gets the cell or null in the specific index.
|
||
function | iterator() | |
Gets the cells enumerator
|
function isBlank()
function isCollapsed() / function setCollapsed(value)
function getHeight() / function setHeight(value)
function isHidden() / function setHidden(value)
function getIndex()
function getGroupLevel()
function isHeightMatched() / function setHeightMatched(value)
function getStyle()
function getFirstCell()
function getFirstDataCell()
function getLastCell()
function getLastDataCell()
function get(column)
column
- The column indexfunction getCellByIndex(index)
index: Number
- The position.function iterator()
function getCellOrNull(column)
column: Number
- The column indexfunction copySettings(source, checkStyle)
source: Row
- the source row whose settings will be copied to this onecheckStyle: boolean
- whether check and gather style.
Only takes effect and be needed when two row objects belong to different workbook and the styles of two workbooks are different.function applyStyle(style, flag)
style: Style
- The style object which will be applied.flag: StyleFlag
- Flags which indicates applied formatting properties.function equals(obj)
obj: Object
- another objectfunction equals(row)
row: Row
- another row object