Limitations
Read only.
Gets the margins of the loaded document's pages. If the document does not contain margins the values are set to -1.
public PageMargins PageMargins { get; }
This example demonstrates an easy use of the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
TXTextControl.PageMargins myPageMargins = ls.PageMargins;
//...
if (myPageMargins.Bottom == -1 && myPageMargins.Left == -1 && myPageMargins.Top == -1 && myPageMargins.Right == -1) {
System.Windows.Forms.MessageBox.Show("The document does not contain any margins!");
}// else...
Read only.