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
Wiki Markup
{description}
{excerpt}Sets or returns orientation of the printed worksheet.{excerpt}
{signature:C#}
 public PageOrientation Orientation{ get; set; }
{signature}{signature:vb.net}
Public Property Orientation() As PageOrientation
{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}