Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

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
  • No labels