TdxRichEditHeaderFooterType Enum
In This Article
Enumerates available header and footer types.
#Declaration
Delphi
TdxRichEditHeaderFooterType = (
First,
Odd,
Even
);
#Members
Name |
---|
First
|
Odd
|
Even
|
#Remarks
Options include:
Value | Description |
---|---|
First | A document section contains a header or footer on its first page. The Toggle |
Odd | A document section has a header or footer on all odd pages. The Toggle |
Even | A document section has a header or footer on all even pages. The Toggle |
The following methods of a document section accept a TdxRichEditHeaderFooterType value as a parameter:
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 Even
value in code.
See Also