Bcc.OpenDocument(File)

Description

This function allows for opening an existing document with a supported BobCAD file format

Parameters

  • File - a valid path to a supported BobCAD file

Examples


-- Present a file open dialog box and then open the file

fileName = Bcc.FileOpenDialogBox({ Filter = "BBCD File (*.bbcd)|*.bbcd|All Files (*.*)|*.*", FilterIndex = 1, InitialDirectory = "C:\\"})

Bcc.OpenDocument(fileName)