AD
Administrator
Syncfusion Team
June 17, 2005 10:58 PM UTC
You can use GridControl.ChangeCells to set a style to an arbitrary GridRangeInfo. You can only directly set style properties on arbitrary ranges in a non-virtual GridControl.
GridStyleInfo style = new GridStyleInfo();
style.BackColor = Color.Red;
this.gridControl1.ChangeCells(GridRangeInfo.Rows(1,3), style);