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.

 public boolean AutoFit{ get; set; }
Public Property AutoFit() As Boolean

This is set to false by default.


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

          //--- Set AutoFit
          importProps.AutoFit = true;
        

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

          '--- Set AutoFit
          importProps.AutoFit = True