[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPageSetup.PaperHeight

PaperHeight Property

PaperHeight

Returns the height in inches of the paper, considering page orientation.

If a custom paper size is set by CustomPaperSize(double, double), this property returns the configured paper height.

Declaration
double PaperHeight { get; }
ReadOnly Property PaperHeight As Double
Examples
IPageSetup pageSetup = worksheet.PageSetup;
pageSetup.CustomPaperSize(8.5, 13);
double paperHeight = pageSetup.PaperHeight;