PageOrientationEnum
PageOrientationEnum enumeration constants are used to set page orientation during export in PDF/RTF/DOCX/ODT or XLSX format.
typedef enum {
POM_Portrait,
POM_Landscape,
POM_Auto,
POM_MostFrequent
} PageOrientationEnum;
Elements
Name | Description |
---|---|
POM_Auto | The orientation is detected automatically. |
POM_Landscape | Sets landscape orientation. |
POM_MostFrequent |
Sets orientation that is the most frequently used in the document. Note: The value is not available for XLSX format. |
POM_Portrait | Sets portrait orientation. |
Used in
IRTFExportParams::PageOrientation
7/3/2024 8:50:25 AM