The Document
public class DocumentLink : TextField
The following examples shows how to insert a Document
textControl1.ViewMode = TXTextControl.ViewMode.PageView;
textControl1.Text = "Page 1\fPage 2\fPage 3";
textControl1.Select(3, 0);
TXTextControl.DocumentTarget newTarget = new TXTextControl.DocumentTarget("Page1");
textControl1.DocumentTargets.Add(newTarget);
textControl1.InputPosition = new TXTextControl.InputPosition(2, 1, 3);
TXTextControl.DocumentLink newLink = new TXTextControl.DocumentLink("Jump to page 1", newTarget);
textControl1.DocumentLinks.Add(newLink);
Constructor | Description |
---|---|
Document |
Initializes a new instance of the Document |
Property | Description |
---|---|
Auto |
Gets the type of auto-generation. |
Document |
Gets or sets an object of the type Document |