Draws the specified object at the specified location with specified size and with the
specified rotation.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public void DrawXObject(
PdfXObject obj,
double x,
double y,
double width,
double height,
double angle
)
VB
Public Sub DrawXObject (
obj As PdfXObject,
x As Double,
y As Double,
width As Double,
height As Double,
angle As Double
)
Parameters
- obj
- Type: BitMiracle.Docotic.Pdf.PdfXObject
The object to draw. - x
- Type: System.Double
The x-coordinate of the upper-left corner of the drawn object. - y
- Type: System.Double
The y-coordinate of the upper-left corner of the drawn object. - width
- Type: System.Double
The width of the drawn object. - height
- Type: System.Double
The height of the drawn object. - angle
- Type: System.Double
The rotation angle.
Remarks
The object gets rotated in a counter-clockwise direction.
The object represented by the obj is scaled to the specified size.
See Also