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 the vertical alignment of text within cells.

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

          //--- Get VerticalAlignment
          Style.VAlign vert = styl.VerticalAlignment;

          //--- Set VerticalAlignment
          styl.VerticalAlignment = Style.VAlign.Bottom;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get VerticalAlignment
          Dim vert As Style.VAlign = styl.VerticalAlignment

          '--- Set VerticalAlignment
          styl.VerticalAlignment = Style.VAlign.Bottom
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the vertical alignment of text within cells.{excerpt}
{signature:C#}
 public VAlign VerticalAlignment{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property VerticalAlignment() As VAlign
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle