[]
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.
double PaperHeight { get; }
ReadOnly Property PaperHeight As Double
IPageSetup pageSetup = worksheet.PageSetup;
pageSetup.CustomPaperSize(8.5, 13);
double paperHeight = pageSetup.PaperHeight;