ITabTableStyles.Add

Syntax

Add: ITabTableStyle;

Description

The Add method adds a style to the collection.

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;

Begin

TSheet := UiTabSheet1.TabSheet;

Range := TSheet.View.Selection.Range;

TTStyles := Range.TableStyles;

TStyle := TTStyles.Add;

TStyle.AssignPredefined(TabTablePredefinedStyle.DarkRed);

End Sub Button1OnClick;

After executing the example for the selected table cells range a style will be created. The parameters of the created style are based on the parameters of the basic dark red formatting style:

See also:

ITabTableStyles