TdxDocumentCapability Enum
Enumerates document feature availability modes in the Rich Edit control.
Declaration
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