Open
public bool Open(string file)
Open Model
Parameters
| Name | Type | Description |
|---|---|---|
| file | string | Model File Path |
Returns
| Type | Description |
|---|---|
| bool | True : Sucess / False : Fail |
Examples
// VIZCore3DX.NET Control
private VIZCore3DX.NET.VIZCore3DXControl vizcore3dx;
private void Example()
{
string file = "C:\\MODEL\\CAD.vizx";
vizcore3dx.Model.Open(file);
}