ITabFormatCondition.AssignPredefinedIcons

Syntax

AssignPredefinedIcons(Style: TabConditionIconType);

Parameters

Style - icon style.

Description

The AssignPredefinedIcons method loads settings of the standard conditional format with icons to the current conditional format.

Example

Executing the example requires a form with the Button1 button located on it, the TabSheetBox component named TabSheetBox1, and a data source for TabSheetBox1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    TSheet: ITabSheet;
    Rng: ITabRange;
    Condition: ITabFormatCondition;
Begin
    TSheet := TabSheetBox1.Source.GetTabSheet;
    Rng := TSheet.View.Selection.Range;
    Condition := Rng.FormatConditions.Add;
    Condition.AssignPredefinedIcons(TabConditionIconType.Circles);
End Sub Button1OnClick;

Clicking the buttons creates a new conditional format for the selected cell range. Settings of this conditional format are loaded from the standard conditional format containing spheres.

See also:

ITabFormatCondition