
Gets or sets the TextComponent object of type ServerTextControl that is associated with the DocumentServer.MailMerge component. The ServerTextControl.PageSize, ServerTextControl.PageMargins and ServerTextControl.Landscape properties will be used, if DocumentServer.MailMerge.UseTemplateFormat has been set to false. The ServerTextControl.FormattingPrinter property will be used internally to format the text. It returns null when not specified.
[C#]
public component TextComponent { get; set; }
[Visual Basic]
Public Property TextComponent() As component
The following example creates a new DocumentServer.MailMerge object and associates a ServerTextControl with it:
[C#]
TXTextControl.MailMerge mailMerge1 = new TXTextControl.MailMerge();
TXTextControl.ServerTextControl serverTextControl1 = new TXTextControl.ServerTextControl();
mailMerge1.TextComponent = serverTextControl1;
[Visual Basic]
Dim MailMerge1 As TXTextControl.MailMerge = New TXTextControl.MailMerge
Dim ServerTextControl1 As TXTextControl.ServerTextControl = New TXTextControl.ServerTextControl
MailMerge1.TextComponent = ServerTextControl1