An instance of the Page
public class PageMarginsPublic Class PageMarginsThe following example shows how to set the page margins for the current section.
TXTextControl.Section section = textControl1.Sections.GetItem();
TXTextControl.PageMargins margins =
new TXTextControl.PageMargins(200, 100, 200, 100);
section.Format.PageMargins = margins;Dim section As TXTextControl.Section = TextControl1.Sections.GetItem()
Dim margins As TXTextControl.PageMargins = _
New TXTextControl.PageMargins(200, 100, 200, 100)
section.Format.PageMargins = margins| Constructor | Description |
|---|---|
| Page |
Creates a new instance of the Page |
| Enumeration | Description |
|---|---|
| Attribute | Determines a certain attribute. |
| Property | Description |
|---|---|
| Bottom | Specifies the bottom margin of a TX Text Control document or document section. |
| Left | Specifies the left margin of a TX Text Control document or document section. |
| Right | Specifies the right margin of a TX Text Control document or document section. |
| Top | Specifies the top margin of a TX Text Control document or document section. |