PdfDrawOptions.GetOutputHeight Method

Gets the height in pixels of the image produced using these options for the specified page.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public int GetOutputHeight(
	PdfPage page
)
VB
Public Function GetOutputHeight ( 
	page As PdfPage
) As Integer

Parameters

page
Type: BitMiracle.Docotic.Pdf.PdfPage
The page to use for calculations.

Return Value

Type: Int32
The height in pixels of the image produced using these options for the specified page.

Remarks

This method can return the same value as the Height property in some cases. The difference between this method and that property is that the method always returns the exact height.

See Also