AD
Administrator
Syncfusion Team
March 2, 2006 05:36 AM UTC
Hi Maggie,
In C#, this property is the indexer for the GridDataBoundGrid class and it returns the GridStyleInfo object which holds all information stored for a cell.
The indexer provides you with a very simple way to query and change cell contents. Below is a code snippet.
cellValue = this.gridDataBoundGrid1.Model[1,1].Text;
or
cellValue = this.gridDataBoundGrid1[1,1].Text
Regards,
Calvin.