Description
Sets or returns 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.)
C#
public int FitToPagesTall{ get ; set ; } |
vb.net
Public Property FitToPagesTall() As Integer |
Remarks
Note: The pair of properties FitToPagesWide and FitToPagesTall, and Zoom are mutually exclusive.Examples
C#
//--- Get FitToPagesTall int pagesTall = ps.FitToPagesTall; //--- Set FitToPagesTell ps.FitToPagesTall = 2; |
vb.net
'--- Get FitToPagesTall Dim pagesTall As Integer = ps.FitToPagesTall '--- Set FitPagesToTall ps.FitToPagesTall = 2 |