TdxRichEditMergeMode Enum
In This Article
Enumerates available document mail merge modes.
#Declaration
Delphi
TdxRichEditMergeMode = (
NewParagraph,
NewSection,
JoinTables
);
#Members
Name |
---|
New
|
New
|
Join
|
#Remarks
Options include:
Value | Description |
---|---|
New |
Each merged document range starts with a new paragraph. |
New |
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 Tdx |
Join |
Enables you to join separated inserted rows into a table. |
The IdxRichEditMailMergeOptions.MergeMode property references the TdxRichEditMailMergeMode type.
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 New
value in code.
See Also