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
Wiki Markup
{description}
{excerpt}Sets or returns an array of column indexes specifying the columns to import.{excerpt}
{signature:C#}
 public int[] ColumnIndexFilter{ get; set; }
{signature}{signature: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#}

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

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

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

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

{example}