Visible
public bool Visible { get; set; }
Mold Line 가시화 여부
Returns
| Type | Description |
|---|---|
| bool |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
string transformFileName = @"C:\transformSample.txt";
string stiffFileName = @"C:\stiffFileSample.txt";
string pannelPath = @"C:\Pannel";
vizcore3d.Model.CreateMoldData(transformFileName, stiffFileName, pannelPath);
vizcore3d.View.MoldLine.Visible = true;
}