ColumnExportEnable

This property sets or returns whether the column of a table field is included in the exported XML file.

Note that the ColumnCount attribute of the XML Columns element contains the total number of columns in the table, not the number of exported columns.

The default value is True.

Syntax

ColumnExportEnable (Column as Variant) as Boolean
Parameter Description
Column Zero-based index or name of the column.

Sample Code

The following sample code disables the XML export for the table field column names that start with "tmp".

Dim i As Long Dim currentTable As ISCBCdrTable Set currentTable =
				pWorkdoc.Fields.ItemByName("Table").Table(0) For i = 0 To currentTable.ColumnCount-1
				If Left$(currentTable.ColumnName(i),3) = "tmp" Then
				currentTable.ColumnExportEnable(i) = False End If Next i

See also

  • ExportDocumentToXml

  • "Export to XML" in the Brainware Intelligent Capture Runtime Server Help.