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 column indexes specifying the columns to import.

Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property ColumnIndexFilter() As Integer()
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.

{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}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle