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 a boolean that represents whether to use the column names from the data source when importing the data. This property is set to true by default.

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

          //--- Return UseColumnNames
          bool useColNames = importProps.UseColumnNames;

          //--- Set UseColumnNames
          importProps.UseColumnNames = false;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return UseColumnNames
          Boolean useColNames = importProps.UseColumnNames

          '--- Set UseColumnNames
          importProps.UseColumnNames = False
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that represents whether to use the column names from the data source when importing the data. This property is set to true by default.{excerpt}
{signature:C#}
 public boolean UseColumnNames{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property UseColumnNames() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle