Objective Grid for Microsoft® .NET® Reference Guide

GridControl.Cell Property

Back to Class Index

Grid cell indexer, which allows a grid Cell object to be obtained.     

[Visual Basic]
Public Default ReadOnly Property Cell( _
   ByVal nR As Integer, _
   ByVal nC As Integer _
) As Cell
[C#]
public Cell this[
   int nR
   int nC
] {get;}

Remarks

    

Represents 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

GridControl Class | GridControl Members | Stingray.Grid Namespace