ST
stanleyj
Syncfusion Team
December 28, 2005 05:46 AM UTC
Hi Andrey,
You will have to handle TableControlPrepareViewStyleInfo or QueryCellStyleInfo handler to change the backcolor of single row.
private void gridGroupingControl1_TableControlPrepareViewStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlPrepareViewStyleInfoEventArgs e)
{
GridTableCellStyleInfo style = (GridTableCellStyleInfo) e.Inner.Style;
if (style.TableCellIdentity.TableCellType == GridTableCellType.RecordFieldCell
|| style.TableCellIdentity.TableCellType == GridTableCellType.AlternateRecordFieldCell)
if(e.TableControl.TableDescriptor.Name == "TableName" && e.Inner.RowIndex == 5)
e.Inner.Style.BackColor = Color.Salmon;
}
Best regards,
Stanley