Gets the width and height of the loaded document's pages. If the document does not contain a page size the Width and Height is set to 0.

Syntax

public System.Drawing.Size PageSize { get; }

Examples

This example demonstrates an easy use of the 'TXTextControl.LoadSettings.PageSize' property. Here, it is stored in a variable of the type 'TXTextControl.PageSize'.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
TXTextControl.PageSize myPageSize = ls.PageSize; 

if (myPageSize.Height == 0 && myPageSize.Width == 0) {
    System.Windows.Forms.MessageBox.Show("This document does not contain any page size(s)!");
}//else....

Limitations

Read only.