Method Range
| Improve this Doc View SourceRange()
Returns the grid range contains all grid columns and rows.
Declaration
public GridRange Range()
Returns
Type | Description |
---|---|
GridRange | The result grid range. |
Range(Int32, Int32)
Returns the grid range at specified column and row.
Declaration
public GridRange Range(int column, int row)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | column | Index of grid column. |
System.Int32 | row | Index of grid row. |
Returns
Type | Description |
---|---|
GridRange | The result grid range. |
Range(Int32, Int32, Int32, Int32)
Returns the grid range at specified left/right grid column and top/bottom grid row.
Declaration
public GridRange Range(int left, int top, int right, int bottom)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | left | Index of left grid column. |
System.Int32 | top | Index of top grid row. |
System.Int32 | right | Index of right grid column. |
System.Int32 | bottom | Index of bottom grid row. |
Returns
Type | Description |
---|---|
GridRange | The result grid range. |