Search
VisioImporter.ImportAllPages Method
See Also
 





Imports all pages from the specified Visio document.

Namespace: MindFusion.Diagramming.Import
Assembly: MindFusion.Diagramming.Import.Visio

 Syntax

C#  Copy Code

public void ImportAllPages (
    string vdxPathName,
    Diagram diagram
)

Visual Basic  Copy Code

Public Sub ImportAllPages ( _
    vdxPathName As String, _
    diagram As Diagram _
)

 Parameters

vdxPathName

A full path to the Visio VDX file.

diagram

Reference to the diagram where the Visio drawing is imported.

 Remarks

The pages are imported starting from the top-left point of the MindFusion.Diagramming diagram area. The current import location is moved one page-width to the right with each new page imported, until PagesPerRow pages are imported on the same y-coordinate. When that happens, the current location moves to the left-most x-coordinate and one page-height down. If there are more pages to import, the process continues as above.

 See Also