Back to Devexpress

TdxLayoutGroupScrollMode Enum

vcl-dxlayoutcontainer-f9876fa1.md

latest1.6 KB
Original Source

TdxLayoutGroupScrollMode Enum

Enumerates available layout group‘s content scroll modes.

Declaration

delphi
TdxLayoutGroupScrollMode = (
    smNone,
    smAuto,
    smIndependent
);

Members

Name
smNone
smAuto
smIndependent

Remarks

Options include:

ValueDescription
smNoneThe 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.
smAutoIn 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.
smIndependentThe 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

dxLayoutContainer Unit