ITabTableStripe.Style

Syntax

Style: ITabCellStyle;

Description

The Style property determines the cell display style for row (column) stripes in the table.

Example

Executing the example requires a form with the Button1 button located on it, the UiTabSheet component named UiTabSheet1 and the TabSheetBox component.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    Range: ITabRange;
    TSheet: ITabSheet;
    TTStyles: ITabTableStyles;
    TStyle: ITabTableStyle;
    s1: ITabCellStyle;
Begin
    s1 := New TabCellStyle.Create;
    s1.BackgroundColor := GxColor.FromName("Red");
    TSheet := UiTabSheet1.TabSheet;
    Range := TSheet.View.Selection.Range;
    TTStyles := Range.TableStyles;
    TStyle := TTStyles.Add;
    TStyle.RowFirstStripe.Style := s1;
End Sub Button1OnClick;

After executing the example for the selected cell range (A0:D4) the background of the first stripe of rows will be changed to red:

See also:

ITabTableStripe