IDimensionCombo.CustomMultiselectText

Fore Syntax

CustomMultiselectText: Boolean;

Fore.NET Syntax

CustomMultiselectText: Boolean;

Description

The CustomMultiselectText property determines whether a custom template is used to form component text on multiple selection.

Comments

By default the property is set to False, on multiple selection of elements the text displayed in the component is formed automatically and looks as follows: <Name> (Total n). Where <Name> is a dictionary name, n is a number of selected elements. If the property is set to True, the text is formed according to the template set in the CustomMultiselectTextTemplate property.

Fore Example

Executing the example requires a form that contains a button and the DimensionCombo component named DimensionCombo1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    DimensionCombo1.CustomMultiselectText := True;
    DimensionCombo1.CustomMultiselectTextTemplate := "Range: %First-%Last";
End Sub Button1OnClick;

On clicking the button the system sets a template for the DimensionCombo1 component, according to which the component text is formed on multiple selection.

Fore.NET Example

The requirements and result of the Fore.NET Example execution match with those in the Fore Example. Use Fore.NET analogs instead of Fore components.

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Begin
    DimensionComboNet1.CtrlBox.CustomMultiselectText := True;
    DimensionComboNet1.CtrlBox.CustomMultiselectTextTemplate := "Range: %First-%Last";
End Sub;

See also:

IDimensionCombo