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 a boolean representing whether or not the table that is automatically created for the imported data will automatically be sized to fit the data being imported.

Signature
C#
C#
 public boolean AutoFit{ get; set; }
Signature
vb.net
vb.net
Public Property AutoFit() As Boolean
Remarks

This is set to false by default.

Example
Code Block
csharp
csharp
titleC#

          //---- Return AutoFit
          boolean fit = importProps.AutoFit;

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

          '--- Return AutoFit
          Dim fit As Boolean = importProps.AutoFit

          '--- Set AutoFit
          importProps.AutoFit = True