Topsolid online Help Index
This example shows how to import an IGES file, and scan the created documents.
Dim TopApp As TopSolid.Application
...
Dim docs As Variant
Dim doc As TopSolid.Document
Dim vdoc As Variant
' import IGES file
Set doc = TopApp.Documents.Open("C:\IGES\test.igs", "", False, docs)
' scan created documents
For Each vdoc In docs
Set doc = vdoc
' do something with doc
...
Next
...
Topsolid online Help Index