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 horizontally within the margins. This is is set to false by default.

(This is not supported for charts.)

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

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

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