[]
Adds an Image to the Body of the current document at a specific position on the current page, and resolves it.
public void RenderDirectImage(Unit x, Unit y, Image image, object width, object height, Style style)
Type | Name | Description |
---|---|---|
Unit | x | The horizontal (X) coordinate at which to render the image (cannot be auto). |
Unit | y | The vertical (Y) coordinate at which to render the image (cannot be auto). |
Image | image | The image to render. |
object | width | The width of the image (if null, auto is used). |
object | height | The height of the image (if null, auto is used). |
Style | style | The Style to use, or null. |
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderDirect(Unit, Unit, RenderObject, object, object).
Adds an Image to the Body of the current document at a specific position on the current page, and resolves it.
public void RenderDirectImage(Unit x, Unit y, Image image, object width, object height, ImageAlign imageAlign)
Type | Name | Description |
---|---|---|
Unit | x | The horizontal (X) coordinate at which to render the image (cannot be auto). |
Unit | y | The vertical (Y) coordinate at which to render the image (cannot be auto). |
Image | image | The image to render. |
object | width | The width of the image (if null, auto is used). |
object | height | The height of the image (if null, auto is used). |
ImageAlign | imageAlign | The image alignment to use. |
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderDirect(Unit, Unit, RenderObject, object, object).
Adds an Image to the Body of the current document at a specific position on the current page, and resolves it.
public void RenderDirectImage(Unit x, Unit y, Image image)
Type | Name | Description |
---|---|---|
Unit | x | The horizontal (X) coordinate at which to render the image (cannot be auto). |
Unit | y | The vertical (Y) coordinate at which to render the image (cannot be auto). |
Image | image | The image to render. |
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderDirect(Unit, Unit, RenderObject, object, object).