DocxInsertImageRequest Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
DocxInsertImageRequest
public class DocxInsertImageRequest
type DocxInsertImageRequest = class
Public Class DocxInsertImageRequest
- Inheritance
-
DocxInsertImageRequest
Constructors
| Name | Description |
|---|---|
| DocxInsertImageRequest() | |
Properties
| Name | Description |
|---|---|
| HeightInEMUs |
Optional: The height of the image in EMUs |
| ImageToAdd |
Optional: Image to add; if you supply in this object, do not supply InputImageFileBytes or InputImageFileUrl. |
| InputDocumentFileBytes |
Optional: Bytes of the input file to operate on |
| InputDocumentFileUrl |
Optional: URL of a file to operate on as input. This can be a public URL, or you can also use the begin-editing API to upload a document and pass in the secure URL result from that operation as the URL here (this URL is not public). |
| InputImageFileBytes |
Optional: Bytes of the input image file to operate on; if you supply this value do not supply InputImageFileUrl or ImageToAdd. |
| InputImageFileUrl |
Optional: URL of an image file to operate on as input; if you supply this value do not supply InputImageFileBytes or ImageToAdd. This can be a public URL, or you can also use the begin-editing API to upload a document and pass in the secure URL result from that operation as the URL here (this URL is not public). |
| InsertPath |
Optional; location within the document to insert the object; fill in the InsertPath field using the Path value from an existing object. Used with InsertPlacement of BeforeExistingObject or AfterExistingObject |
| InsertPlacement |
Optional; default is DocumentEnd. Placement Type of the insert; possible values are: DocumentStart (very beginning of the document), DocumentEnd (very end of the document), BeforeExistingObject (right before an existing object - fill in the InsertPath field using the Path value from an existing object), AfterExistingObject (right after an existing object - fill in the InsertPath field using the Path value from an existing object) |
| WidthInEMUs |
Optional: The width of the image in EMUs |