Open
Overloads
| Name | Description |
|---|---|
| Open(string file) | Open Model |
| Open(string file, string password) | Open Model |
Open(string file)
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
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
string file = "C:\\MODEL\\CAD.viz";
vizcore3d.Model.Open(file);
}
Open(string file, string password)
public bool Open(string file, string password)
Open Model
Parameters
| Name | Type | Description |
|---|---|---|
| file | string | Model File Path |
| password | string | Password |
Returns
| Type | Description |
|---|---|
| bool | Result - True : Sucess / False : Fail |