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 orientation of the printed worksheet.

Signature
C#
C#
public PageOrientation Orientation{ get; set; }
Signature
vb.net
vb.net
Public Property Orientation() As PageOrientation

Example
Code Block
csharp
csharp
titleC#
          //--- Get Orientation
          PageSetup.PageOrientation orientation = ps.Orientation

          //--- Set Orientation
          ps.Orientation = PageSetup.PageOrientation.Landscape;
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get Orientation
          Dim orientation As PageSetup.PageOrientation = ps.Orientation

          '--- Set Orientation
          ps.Orientation = PageSetup.PageOrientation.Landscape