TdxInsertOptions Type
In This Article
Enumerates sources of the text formatting applied to the pasted document fragment.
#Declaration
Delphi
TdxInsertOptions = dxRichEdit.NativeApi.TdxRichEditInsertOptions;
#Referenced Class
Type |
---|
Tdx |
#Remarks
Options include:
Value | Description |
---|---|
Keep |
A pasted document fragment retains its original formatting. |
Match |
A Rich Edit control changes the pasted text’s formatting to match the formatting at the destination point (that is, the text selection or caret position). |
Note
Tdx
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 Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Keep
value in code.
See Also