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 | 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 |
Property Getters/Setters Detail |
---|
isBlank : boolean | |
function isBlank() |
getHeight/setHeight : Number | |
function getHeight() / function setHeight(value) |
isHidden/setHidden : boolean | |
function isHidden() / function setHidden(value) |
getIndex : Number | |
function getIndex() |
getGroupLevel : byte | |
function getGroupLevel() |
isHeightMatched/setHeightMatched : boolean | |
function isHeightMatched() / function setHeightMatched(value) |
getStyle : Style | |
function getStyle() |
getFirstCell : Cell | |
function getFirstCell() |
getFirstDataCell : Cell | |
function getFirstDataCell() |
getLastCell : Cell | |
function getLastCell() |
getLastDataCell : Cell | |
function getLastDataCell() |
get : Cell | |
function get(column) |
column
- The column indexMethod Detail |
---|
getCellByIndex | |
function getCellByIndex(index) |
index: Number
- The position.iterator | |
function iterator() |
getCellOrNull | |
function getCellOrNull(column) |
column: Number
- The column indexcopySettings | |
function 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.applyStyle | |
function applyStyle(style, flag) |
style: Style
- The style object which will be applied.flag: StyleFlag
- Flags which indicates applied formatting properties.equals | |
function equals(obj) |
obj: Object
- another objectequals | |
function equals(row) |
row: Row
- another row object