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 whether text in a cell should be reduced in size to fit within the cell's width.

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

          //--- Get ShrinkToFit
          bool shrink = styl.ShrinkToFit;

          //--- Set ShrinkToFit
          styl.ShrinkToFit = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get ShrinkToFit
          Dim shrink As Boolean = styl.ShrinkToFit

          '--- Set ShrinkToFit
          styl.ShrinkToFit = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether text in a cell should be reduced in size to fit within the cell's width.{excerpt}
{signature:C#}
 public boolean ShrinkToFit{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property ShrinkToFit() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle