|
PdfImageElement Constructor (Single, Single, Single, Single, String) |
Creates an image object that can be added to a pdf document.
Namespace:
SelectPdf
Assembly:
Select.Pdf (in Select.Pdf.dll) Version: 20.2
Syntax public PdfImageElement(
float x,
float y,
float width,
float height,
string fileName
)
Public Sub New (
x As Single,
y As Single,
width As Single,
height As Single,
fileName As String
)
Parameters
- x
- Type: SystemSingle
The X position where this element will be rendered. - y
- Type: SystemSingle
The Y position where this element will be rendered. - width
- Type: SystemSingle
The destination rectangle width. - height
- Type: SystemSingle
The destination rectangle height. - fileName
- Type: SystemString
The image file path.
Remarks
The image object is created from the specified file that will be rendered at the position (x,y)
with the specified destination width and height size.
See Also