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

Signature
C#
C#
<p>  public boolean TruncateRows{ get; set; }
</p>
Signature
vb.net
vb.net
<p>Public Public Property TruncateRows() As Boolean
Boolean</p>

Example
Code Block
csharp
csharp
titleC#
          

...

//--- Get TruncateRows
          bool truncateRows = importProps.TruncateRows;

          //--- Set TruncateRows
          importProps.TruncateRows = true;
        
Code Block
vb.net
vb.net
titlevb.net
          

...

'--- Get TruncateRows
          Dim truncateRows As Boolean = importProps.TruncateRows

          '--- Set TruncateRows
          importProps.TruncateRows = True