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 whether imported data columns will be truncated if the number of columns imported exceeds the number of target columns in the spreadsheet.

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

          //--- Get TruncateColumns
          bool truncateCols = importProps.TruncateColumns;

          //--- Set TruncateColumns
          importProps.TruncateColumns = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get TruncateColumns
          Dim truncateCols As Boolean = importProps.TruncateColumns

          '--- Set TruncateColumns
          importProps.TruncateColumns = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether imported data columns will be truncated if the number of columns imported exceeds the number of target columns in the spreadsheet.{excerpt}
{signature:C#}
 public boolean TruncateColumns{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property TruncateColumns() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle