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

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

          //--- Get Orientation
          PageSetup.PageOrientation orientation = ps.Orientation

          //--- Set Orientation
          ps.Orientation = PageSetup.PageOrientation.Landscape;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get Orientation
          Dim orientation As PageSetup.PageOrientation = ps.Orientation

          '--- Set Orientation
          ps.Orientation = PageSetup.PageOrientation.Landscape
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns orientation of the printed worksheet.{excerpt}
{signature:C#}
 public PageOrientation Orientation{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Orientation() As PageOrientation
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle