PdfDrawOptions.GetOutputWidth Method

Gets the width 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 GetOutputWidth(
	PdfPage page
)
VB
Public Function GetOutputWidth ( 
	page As PdfPage
) As Integer

Parameters

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

Return Value

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

Remarks

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

See Also