Click or drag to resize
GridControlCanSelectCurrentCell Method
Determines if the new current cell can be selected or the old current cell deselected.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public virtual bool CanSelectCurrentCell(
	bool select,
	uint selectRow,
	uint selectCol,
	uint oldRow,
	uint oldCol
)

Parameters

select
Type: SystemBoolean
Specifies that the cell will be activated (true) or deactivated (false).
selectRow
Type: SystemUInt32
Specifies the new row index for the current cell.
selectCol
Type: SystemUInt32
Specifies the new column index for the current cell.
oldRow
Type: SystemUInt32
Specifies the old row index for the current cell.
oldCol
Type: SystemUInt32
Specifies the old column index for the current cell.

Return Value

Type: Boolean
true if the operation is successful, false otherwise.
See Also