InfoConnect API Guide
Attachmate.Reflection.Productivity Namespace / IOfficeTools Interface / CreateWordProcessingDocumentWithGraphicSet Method
A set of screen images to insert into the document.
The template to use when creating new documents. If null, invalid, or not found (or in Visual Basic, Nothing), no template is used.
The location in the document to insert a graphic. If null, invalid, or not found (or in Visual Basic, Nothing) the graphic is inserted at the beginning of the document.


In This Topic
    CreateWordProcessingDocumentWithGraphicSet Method
    In This Topic
    Creates a new word-processing document with a set of graphics.
    Syntax
    'Declaration
     
    
    Sub CreateWordProcessingDocumentWithGraphicSet( _
       ByVal screens As IList(Of Image), _
       ByVal template As String, _
       ByVal bookmark As String _
    ) 
    'Usage
     
    
    Dim instance As IOfficeTools
    Dim screens As IList(Of Image)
    Dim template As String
    Dim bookmark As String
     
    instance.CreateWordProcessingDocumentWithGraphicSet(screens, template, bookmark)
    void CreateWordProcessingDocumentWithGraphicSet( 
       IList<Image> screens,
       string template,
       string bookmark
    )

    Parameters

    screens
    A set of screen images to insert into the document.
    template
    The template to use when creating new documents. If null, invalid, or not found (or in Visual Basic, Nothing), no template is used.
    bookmark
    The location in the document to insert a graphic. If null, invalid, or not found (or in Visual Basic, Nothing) the graphic is inserted at the beginning of the document.
    See Also