Set range of cells

How does one set a range of cells with 1 command? For example, how do I set the backcolor of all the cells in the first 3 rows. Thanks, Steve

1 Reply

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);

Loader.
Up arrow icon