Back to Devexpress

TdxFieldsHighlightMode Enum

vcl-dxrichedit-dot-types-0b5a3be1.md

latest1.1 KB
Original Source

TdxFieldsHighlightMode Enum

Enumerates document field highlight modes.

Declaration

delphi
TdxFieldsHighlightMode = (
    Auto,
    Never,
    Always
);

Members

Name
Auto
Never
Always

Remarks

Options include:

ValueDescription
AutoThe control’s internal settings determine if document fields are highlighted.
NeverThe document fields are not visually distinguishable.
AlwaysThe document fields are always highlighted.

A Rich Edit control’s Options.Fields.HighlightMode property references the TdxFieldsHighlightMode type.

Note

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

See Also

dxRichEdit.Types Unit