StyleIndex: Integer;
The StyleIndex property determines the style index for the current row from the collection of DataGrid component installed styles.
Executing the example requires a form with the Button1 button and the DataGrid component named DataGrid1.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
s: IDataGridStyle;
Begin
s := DataGrid1.Styles.Add;
s.BackgroundColor := GxColor.FromName("Red");
s.TextColor := GxColor.FromName("Green");
DataGrid1.Columns.Item(0).StyleIndex := 1;
End Sub Button1OnClick;
After executing the example click the button, a style is added to the style collection and this style is set for the first column.
See also: