IDimensionViewer.AttributeSeparator

Syntax

AttributeSeparator: Char;

Description

The AttributeSeparator property determines a separator between attribute names.

Comments

The property is relevant if the IDimensionViewer.MultipleAttributes property is set to True.

Example

Executing the example requires a form containing the components:

A table dictionary must also be present that is a data source for UiDimension1. The dictionary does not contain hidden attributes.

Sub UserProc;
Begin
    // Set whether several dictionary attributes are displayed
    DimensionTree1.MultipleAttributes := True;
    // Change separator type
    DimensionTree1.AttributeSeparator := '\';
End Sub UserProc;

After executing the example it is available to display several dictionary attributes and change separator type.

See also:

IDimensionViewer