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}{signature:
}
Signature
vb.net
vb.net
Public Property AutoFit() As Boolean
{signature}
{remarks}This is set to {{false}} by default.

{remarks}
{example}{code:csharp|title=C#}
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} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set AutoFit
          importProps.AutoFit = True
        
{code} {example}