Click or drag to resize
GridControlIsCurrentCell Method (UInt32)
Determines if a current cell is selected or is in the specified row.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public bool IsCurrentCell(
	uint row
)

Parameters

row
Type: SystemUInt32
Specifies the row index. If Invalid, the entire grid is checked.

Return Value

Type: Boolean
true if a current cell is selected or is in the specified row. Otherwise, false if no current cell is selected or if it is not in the specified row.
Remarks
Equivalent to IsCurrentCell(row, Invalid, false).
See Also