Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxDocumentCapability Enum

Enumerates document feature availability modes in the Rich Edit control.

#Declaration

Delphi
TdxDocumentCapability = (
    Default,
    Disabled,
    Enabled,
    Hidden
);

#Members

Name
Default
Disabled
Enabled
Hidden

#Remarks

Options include:

Value Description
Default The Rich Edit control’s predefined settings determine if a document feature is enabled.
Disabled A document feature is disabled. All UI elements linked to the commands associated with the feature are disabled. All key combinations that invoke these commands have no effect.
Enabled A document feature is enabled. All UI elements linked to the commands associated with the feature are enabled.
Hidden A document feature is disabled. All UI elements linked to the commands associated with the feature are hidden.

Multiple properties accessible via the Rich Edit control’s Options.Behavior, Options.DocumentCapabilities, and Options.DocumentCapabilities.Numbering property sets reference the TdxDocumentCapability type.

Note

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

See Also