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

(This is not supported for charts.)

Signature
C#
C#
 public int FitToPagesWide{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property FitToPagesWide() As Integer
{signature}
{remarks}
Remarks

Note:

The

pair

of

properties

FitToPagesWide

and

FitToPagesTall,

and

Zoom

are

mutually

exclusive.

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

Example
Code Block
csharp
csharp
titleC#


          //--- Get FitToPagesWide
          bool pagesWide = ps.FitToPagesWide;

          //--- Set FitToPagesWide
          ps.FitToPagesWide = 2;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          '--- Get FitToPagesWide
          Dim pagesWide As Boolean = ps.FitToPagesWide

          '--- Set FitToPagesWide
          ps.FitToPagesWide = 2
        
{code} {example}