Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

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.
C#
<p> public boolean TruncateRows{ get; set; }</p>
vb.net
<p>Public Property TruncateRows() As Boolean</p>

Examples

C#
//--- Get TruncateRows
bool truncateRows = importProps.TruncateRows;
 
//--- Set TruncateRows
importProps.TruncateRows = true;
vb.net
'--- Get TruncateRows
Dim truncateRows As Boolean = importProps.TruncateRows
 
'--- Set TruncateRows
importProps.TruncateRows = True

  • No labels