[]
Determines how to handle insufficient space when importing data.
public InsufficientSpaceHandling InsufficientSpaceHandling { get; set; }
Public Property InsufficientSpaceHandling As InsufficientSpaceHandling
| Type | Description |
|---|---|
| InsufficientSpaceHandling | The default value is Overwrite. |
DataImportOptions options = new DataImportOptions();
options.InsufficientSpaceHandling = InsufficientSpaceHandling.Truncate;
InsufficientSpaceHandling handling = options.InsufficientSpaceHandling;