IMetaAttributesBreadcrumb.CustomMultiselectText

Syntax

CustomMultiselectText: Boolean;

Description

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

Comments

The property is set to False by default, on multiple selection of elements the text displayed in the component is formed automatically and looks as follows: <Name> (Selected n). Where <Name> is an attribute 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.

Example

Executing the example requires a form with the Button1 button and the MetaAttributesBreadcrumb component named MetaAttributesBreadcrumb1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    MetaAttributesBreadcrumb1.CustomMultiselectText := True;
    MetaAttributesBreadcrumb1.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.

See also:

IMetaAttributesBreadcrumb