new Row()
Members
-
firstCellIndex
-
Gets the index of the first non-empty cell within the row. This property allows for the identification of the starting point of data or formatting within a specific row of an Excel sheet, facilitating operations that depend on the row's content range.
-
lastCellIndex
-
Obtains the index of the last non-empty cell within the row.
Methods
-
createCell(columnIndex)
-
Create the cell at the specified column index in the row
Parameters:
Name Type Description columnIndex
Number The zero-based column index of the cell to be created Returns:
An object representing the fundamental cell. -
getCellAt(columnIndex)
-
Retrieves the cell at the specified column index in the row
Parameters:
Name Type Description columnIndex
Number The zero-based column index of the cell to retrieve. Returns:
The Cell object corresponding to the column index. Returns null if there's no data in the cell at the specified column index.