Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Sets or returns an array of column indexes specifying the columns to import.

Signature
C#
C#
 public int[] ColumnIndexFilter{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property ColumnIndexFilter() As Integer()
{signature}
{remarks}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.

{remarks}
{example}{code:csharp|title=C#}
Remarks

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.

Example
Code Block
csharp
csharp
titleC#


          //--- Return ColumnIndexFilter
          int[] colIndexes = importProps.ColumnIndexFilter;

          //--- Set ColumnIndexFilter
          importProps.ColumnIndexFilter = new int[]{0,2,3,6};
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          '--- Return ColumnIndexFilter
          Dim colIndexes() As Integer = importProps.ColumnIndexFilter

          '--- Set ColumnIndexFilter
          importProps.ColumnIndexFilter = New Integer(){0, 2, 3, 6}
        
{code} {example}