EbsOpen Class Library for EBSILON®Professional

Application.Open Method 

Opens an existing EBSILON®Professional model.

[Visual Basic]
Public Function Open( _ 
   ByVal Filename As String, _ 
   Optional ByVal OnErrorReturnNULL As Boolean = VARIANT_FALSE _ 
) As Model
[C#]
public Model Open(
   string Filename,
   bool OnErrorReturnNULL
);
[C++]
public: Model* Open(
   String* Filename,
   bool OnErrorReturnNULL
);
[JScript]
public function Open(
   String Filename,
   bool OnErrorReturnNULL
): Model;

Parameters

Filename
Path to EBSILON®Professional model.
OnErrorReturnNULL
If an error occurs either an exception is thrown if OnErrorReturnNULL is False, otherwise a Null reference is returned.

Return Value

A reference to the opened model or in case of an error a Null reference.

Remarks

Opens an existing EBSILON®Professional model, where Filename may be a relative or absolute path.

See Also

Application Class | EbsOpen Namespace