Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

Sets or returns whether or not the data of the worksheet is centered vertically within the margins. This is is set to false by default.

(This is not supported for charts.)

Signature
C#
C#
<p> public boolean CenterVertically{ get; set; }</p>
Signature
vb.net
vb.net
<p>PublicPublic Property CenterVertically() As Boolean</p>Boolean
Example
 
Code Block
csharp
csharp
titleC#
          //--- Get CenterVertically
          bool centerVert = ps.CenterVertically;

          //--- Set CenterVertically
          ps.CenterVertically = true;
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get CenterVertically
          Dim centerVert As Boolean = ps.CenterVertically

          '--- Set CenterVertically
          ps.CenterVertically = True
        
Example