Skip to main content

TdxRichEditMergeMode Enum

Enumerates available document mail merge modes.

Declaration

TdxRichEditMergeMode = (
    NewParagraph,
    NewSection,
    JoinTables
);

Members

Name
NewParagraph
NewSection
JoinTables

Remarks

Options include:

Value Description
NewParagraph Each merged document range starts with a new paragraph.
NewSection Each merged document range starts with a new section. The inserted section break has the same type as the previous section break. If the inserted section break is the first break, mail merge routines use TdxRichEditSectionStartType.NextPage mode. Note that headers and footers support only this mode.
JoinTables Enables you to join separated inserted rows into a table.

The IdxRichEditMailMergeOptions.MergeMode property references the TdxRichEditMailMergeMode type.

Note

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

See Also