Click or drag to resize
RangeFromLTRB Method
Creates a range from the left, top, right, and bottom row and column indexes.

Namespace: Stingray.Grid
Assembly: Stingray.GridUtils (in Stingray.GridUtils.dll) Version: 14.0.0.0
Syntax
public static Range FromLTRB(
	uint left,
	uint top,
	uint right,
	uint bottom
)

Parameters

left
Type: SystemUInt32
The left column index.
top
Type: SystemUInt32
The top row index.
right
Type: SystemUInt32
The right column index.
bottom
Type: SystemUInt32
The bottom row index.

Return Value

Type: Range
A new Range object consisting of the indicated area.
Remarks
Equivalent to Cells(top, left, bottom, right).
See Also