Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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#
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}{signature:vb.net
vb.net
}
Public Property AutoFit() As Boolean
Remarks

This is set to false by default.

{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}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle