Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns an array of columns names specifying the columns to import. If the length of the specified array is greater than MaxColumns, or exceeds the size of the target area, the columns will be added in the order in which they appear in the array.

{signature}
{example}{code:csharp|title=C#}

          //--- Return ColumnNameFilter
          String[] colNames = importProps.ColumnNameFilter;

          //--- Set ColumnNameFilter
          importProps.ColumnNameFilter = new String[]{"Name", "Address", "Zip"};
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return ColumnNameFilter
          Dim colNames As String() = importProps.ColumnNameFilter

          '--- Set ColumnNameFilter
          importProps.ColumnNameFilter = New String() {"Name", "Address", "Zip"}
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns an array of columns names specifying the columns to import.    If the length of the specified array is greater than MaxColumns, or exceeds the size of the target area, the columns will be added in the order in which they appear in the array.{excerpt}
{signature:C#}
 public System.String[] ColumnNameFilter{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property ColumnNameFilter() As String()
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle