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

Description

Excerpt

Sets or returns the vertical alignment of text within cells.

Signature
C#
C#
<p> public VAlign VerticalAlignment{ get; set; }</p>
Signature
vb.net
vb.net
<p>Public Property VerticalAlignment() As VAlign</p>

Example
Code Block
csharp
csharp
titleC#
          //--- Get VerticalAlignment
          Style.VAlign vert = styl.VerticalAlignment;

          //--- Set VerticalAlignment
          styl.VerticalAlignment = Style.VAlign.Bottom;
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get VerticalAlignment
          Dim vert As Style.VAlign = styl.VerticalAlignment

          '--- Set VerticalAlignment
          styl.VerticalAlignment = Style.VAlign.Bottom