Back to Devexpress

TdxRichEditScrollbarVisibility Enum

vcl-dxrichedit-dot-types-a37ff5c3.md

latest1.1 KB
Original Source

TdxRichEditScrollbarVisibility Enum

Enumerates scrollbar visibility options.

Declaration

delphi
TdxRichEditScrollbarVisibility = (
    Auto,
    Visible,
    Hidden
);

Members

Name
Auto
Visible
Hidden

Remarks

Options include:

ValueDescription
AutoThe scrollbar is displayed only if the content does not fit the control’s area at the current zoom level.
VisibleThe scrollbar is always visible. However, if the content fully fits the control’s area, the scrollbar is inactive.
HiddenThe scrollbar is always hidden.

Note

TdxRichEditScrollbarVisibility is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxRichEditScrollbarVisibility.Auto (in Delphi) or TdxRichEditScrollbarVisibility::Auto (in C++Builder) to refer to the Auto value in code.

See Also

dxRichEdit.Types Unit