XlsRange
CheckRange Method
|
Checks if the given row and column indices are within the valid range of the book.
Throws an ArgumentOutOfRangeException if the indices are out of range.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
protected void CheckRange(
int row,
int column
)
Protected Sub CheckRange (
row As Integer,
column As Integer
)
protected:
void CheckRange(
int row,
int column
)
member CheckRange :
row : int *
column : int -> unit
Parameters
-
row
-
Type:
System
Int32
The row index to check.
-
column
-
Type:
System
Int32
The column index to check.
See Also