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

TdxInsertOptions Type

Enumerates sources of the text formatting applied to the pasted document fragment.

#Declaration

Delphi
TdxInsertOptions = dxRichEdit.NativeApi.TdxRichEditInsertOptions;

#Referenced Class

Type
TdxRichEditInsertOptions

#Remarks

Options include:

Value Description
KeepSourceFormatting A pasted document fragment retains its original formatting.
MatchDestinationFormatting 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

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

See Also