AD
Administrator
Syncfusion Team
August 25, 2004 06:56 AM UTC
In a GridControl, setting grid[row,col].ReadOnly = true should only affect the cell at (row, col).
But later, if you want to change this cell style at (row, col), you will not be able to since it is readonly unless you temporarily turn off the readonly as in this code:
grid.IgnoreReadOnly = true;
grid[row, col].ImageIndex = 3;//whatever
grid.IgnoreReadOnly = false;