[This is preliminary documentation and is subject to change.]

This enum specifies the page-position part of a selection rule to determine if the MasterPage is eligible for selection at this point in the page-sequence.

Namespace: TallComponents.Web
Assembly: TallComponents.WebToPDF (in TallComponents.WebToPDF.dll) Version: 1.0.4.1

Syntax

C#
[FlagsAttribute]
public enum PagePosition
Visual Basic
<FlagsAttribute> _
Public Enumeration PagePosition

Members

Member nameValueDescription
First1 The MasterPage is eligible for selection if this is the first page in the page-sequence.
Middle2 The MasterPage is eligible for selection if this is not the first page nor the last page in the page-sequence.
Last4 The MasterPage is eligible for selection if this is the last page in the page-sequence.
Any7 The MasterPage is eligible for selection regardless of page positioning within the page-sequence. (this is a convenience value)

Remarks

This enum is a flags.

See Also