Gets the bounding rectangle of the page, in twips, relative to the top of the document.

Syntax

public Rectangle Bounds { get; }

Examples

The following example uses Bounds property to get the bounding rectangle of the page, in twips, relative to the top of the document.

textControl1.ViewMode = TXTextControl.ViewMode.PageView;

for (int i = 0; i < 100; i++)
    textControl1.Selection.Text = new string('a', 200);

textControl1.ScrollLocation = new Point(textControl1.ScrollLocation.X,
                              textControl1.GetPages()[2].Bounds.Top);

Limitations

Read only.