PDFDocSetPageLabel Method |
Attaches a label to a page. This establishes the numbering scheme
for that page and all following it, until another page label is
encountered. This label allows PDF producers to define a page
numbering system other than the default.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetPageLabel(
int page_num,
PageLabel label
)
Public Sub SetPageLabel (
page_num As Integer,
label As PageLabel
)
public:
virtual void SetPageLabel(
[InAttribute] int page_num,
[InAttribute] PageLabel^ label
) sealed
function SetPageLabel(page_num, label);
Parameters
- page_num
- Type: SystemInt32
The number of the page to label. If page_num is
less than 1 or greater than the number of pages in the document,
the method does nothing.
- label
- Type: pdftron.PDFPageLabel
the label
See Also