Skip to main content

TdxRichEditRulerVisibility Enum

Enumerates available ruler visibility modes.

Declaration

TdxRichEditRulerVisibility = (
    Auto,
    Visible,
    Hidden
);

Members

Name
Auto
Visible
Hidden

Remarks

Options include:

Value Description
Auto The visibility of a particular ruler is determined by the currently active document View.
Visible Both rulers are visible regardless of the selected document View.
Hidden Both rulers are hidden regardless of the active document View..

A Rich Edit control’s Options.HorizontalRuler.Visibility and Options.VerticalRuler.Visibility properties reference the TdxRichEditRulerVisibility type.

Note

TdxRichEditRulerVisibility 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 TdxRichEditRulerVisibility.Auto (in Delphi) or TdxRichEditRulerVisibility::Auto (in C++Builder) to refer to the Auto value in code.

See Also