CreateWordProcessingDocumentWithGraphic Method
In This Topic
Creates a new word-processing document with graphics.
Syntax
'Declaration
Sub CreateWordProcessingDocumentWithGraphic( _
ByVal As String, _
ByVal As String, _
ByVal As String _
)
'Usage
Dim instance As IOfficeTools
Dim path As String
Dim template As String
Dim bookmark As String
instance.CreateWordProcessingDocumentWithGraphic(path, template, bookmark)
void CreateWordProcessingDocumentWithGraphic(
string ,
string ,
string
)
Parameters
- path
- The path of the image to insert in the document. If null (or in Visual Basic, Nothing) is passed in, then a graphical representation of the current host screen is used.
- template
- The template for creating new documents. If null, invalid, or not found (or in Visual Basic, Nothing) no template is used.
- bookmark
- The location in the template to insert a graphic. If null, invalid, or not specified (or in Visual Basic, Nothing), the graphic is inserted at the beginning of the document.
See Also