Limitations
Read only.
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.
public System.Drawing.Size PageSize { get; }
This example demonstrates an easy use of the 'TXText
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....
Read only.