TdxLayoutGroupScrollMode Enum
Enumerates available layout group‘s content scroll modes.
Declaration
TdxLayoutGroupScrollMode = (
smNone,
smAuto,
smIndependent
);
Members
Name |
---|
smNone
|
smAuto
|
smIndependent
|
Remarks
Options include:
Value | Description |
---|---|
smNone | The layout group does not affect how its nested groups scroll their content horizontally or vertically. The layout group’s own horizontal and/or vertical scrollbars are displayed by its parent in this mode if the content of the group exceeds its corresponding dimension. |
smAuto | In this mode, a layout group displays its own horizontal or vertical scrollbar only if its parent group’s ScrollOptions.Horizontal or ScrollOptions.Vertical property is set to smAuto or smIndependent, respectively. |
smIndependent | The layout group always displays the horizontal or vertical scrollbar if the content exceeds the corresponding group’s dimension. The parent group’s corresponding ScrollOptions property value is ignored in this mode. |
The layout group’s ScrollOptions.Horizontal and ScrollOptions.Vertical properties reference the TdxLayoutGroupScrollMode type.
See Also