Click or drag to resize

MoldLineManagerVisible Property

Mold Line 가시화 여부

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.25.910 (2.8.25.910)
Syntax
C#
public bool Visible { get; set; }

Property Value

Type: Boolean
Examples
C#
// 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;
}
See Also