XlsRangesCollection
GetColumnRows Method
|
Retrieves an array of CellRange objects representing either columns or rows based on the provided flag.
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
protected CellRange[] GetColumnRows(
bool bIsColumn
)
Protected Function GetColumnRows (
bIsColumn As Boolean
) As CellRange()
protected:
array<CellRange^>^ GetColumnRows(
bool bIsColumn
)
member GetColumnRows :
bIsColumn : bool -> CellRange[]
Parameters
-
bIsColumn
-
Type:
System
Boolean
If true, retrieves columns; if false, retrieves rows.
Return Value
Type:
CellRange
An array of CellRange objects.
See Also