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
Wiki Markup
{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.{excerpt}
{signature:C#}
 public boolean AutoFit{ get; set; }
{signature}{signature:vb.net}
Public Property AutoFit() As Boolean
{signature}
{remarks}This is set to {{false}} by default.

{remarks}
{example}{code:csharp|title=C#}

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

          //--- Set AutoFit
          importProps.AutoFit = true;
        {code}
{code:vb.net|title=vb.net}

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

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

{example}