​
​
​

Gets or sets the name of the table column whose content this merge condition is compared to.

Syntax

​public string ColumnName { get; set; }
​Public Property ColumnName() As String

Examples

The following example shows the FilterInstruction class. It uses the ColumnName property to set the name of the table column.

​TXTextControl.DocumentServer.DataShaping.FilterInstruction instruction = new TXTextControl.DocumentServer.DataShaping.FilterInstruction();
instruction.ColumnName = "-----";
​Dim instruction As TXTextControl.DocumentServer.DataShaping.FilterInstruction = New TXTextControl.DocumentServer.DataShaping.FilterInstruction()
instruction.ColumnName = "-----"
​