Click or drag to resize
GridControldefault Property
Grid cell indexer, which allows to access grid cell objects.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
[BrowsableAttribute(false)]
public Cell this[
	uint row,
	uint col
] { get; }

Parameters

row
Type: SystemUInt32
col
Type: SystemUInt32

Property Value

Type: Cell
A cell in the grid. You can access a grid cell with this indexer using array access syntax. For example, to obtain a Cell object representing the grid cell at location 1,1 for a grid named gridControl1, you can use the following C# syntax:
Cell cell = gridControl1[1,1];
See Also