Opens an existing document and adds it to the collection.
Syntax
object.Open(Filename)
Where:
object is one of the ModelSpace or PaperSpace collection objects or a Block object;
Filename is the name of the file to open.
Open method example
Private Sub OpenMethod()
' The following example opens "C:\package.dwg" file.
' You may need to change the drawing path and name to reflect a valid
' CADopia drawing on your system.
Documents.Open ("C:\package.dwg")
End Sub
Comments