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 [FitToPagesTall|PageSetup.FitToPagesTall]. This is set to "auto" by default. The valid range of values is 0 through 32767. A value of 0 means "auto".

 _(This is not supported for charts.)_{excerpt}
{signature:C#}
 public int FitToPagesTall{ get; set; }
{signature}{signature:vb.net}
Public Property FitToPagesTall() As Integer
{signature}
{remarks}Note: The pair of properties FitToPagesWide and FitToPagesTall, and Zoom are mutually exclusive.

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

          //--- Get FitToPagesTall
          int pagesTall = ps.FitToPagesTall;

          //--- Set FitToPagesTell
          ps.FitToPagesTall = 2;
        {code}
{code:vb.net|title=vb.net}

          '--- Get FitToPagesTall
          Dim pagesTall As Integer = ps.FitToPagesTall

          '--- Set FitPagesToTall
          ps.FitToPagesTall = 2
        {code}
{example}