|
This property specifies the page layout of the document. Following are the possible values for TxgtPageLayout:
Page Layout
|
Description
|
Values
|
plNone
|
None of the page is displayed
|
0
|
PlsinglePage
|
Display one page at a time
|
1
|
plOneColumn
|
Display the pages in one column
|
2
|
plTwoColumnLeft
|
Display the pages in two columns, with odd numbered pages on the left
|
3
|
plTwoColumnRight
|
Display the pages in two columns, with odd numbered pages on the right
|
4
|
Syntax
[VC++]
long GetPageLayout();
[CS]
public abstract new PDFtoolkitX.TxgtPageLayout GetPageLayout ( )
[VB]
Function GetPageLayout() As TxgtPageLayout
|
Parameters
PageLayout
Specify the Page layout of the document.
Example Code
[VC++]
m_PDF.SetPageLayout(plSinglePage);
[VB]
gtPDFDocumentX1.SetPageLayout(plSinglePage)
|