|
THotPDF.PageLayout Property
|
Вверх Назад Далее |
|
Определяет layout страниц, используемый при открытии документа
type THPDFPageLayout = (plSinglePage, plOneColumn, plTwoColumnLeft, plTwoColumnRight);
Delphi syntax: property PageLayout: THPDFPageLayout;
C++ syntax: __property THPDFPageLayout PageLayout;
Описание Используйте PageLayout, чтобы задать layout страниц при открытии документа (значение по умолчанию: plSinglePage)
Value Meaning plSinglePage Display one page at a time. plOneColumn Display the pages in one column. plTwoColumnLeft Display the pages in two columns, with oddnumbered pages on the left. plTwoColumnRight Display the pages in two columns, with oddnumbered pages on the right.
Code Example
|