ImageEn, unit iexLayerProps |
|
TIELayerProps.HeadingMode
Declaration
property HeadingMode: TIEHeadingMode;
Description
Whether a label is shown above the tab control, displaying which index is selected, e.g. "Layer 2 (Line)"
Value | Description |
iehNone | Heading block is hidden |
iehAuto | Heading is generated automatically showing the layer index and type, e.g. "Layer 1 (Shape)" |
iehCustom | Heading is specified by Heading |
Default: iehAuto
// Show a custom heading
IELayerProps1.HeadingMode := iehCustom;
IELayerProps1.Heading := 'Specify Layer Properties...';