본문으로 건너뛰기

GetGeometryPropertyControl

Overloads

NameDescription
GetGeometryPropertyControl()Get Geometry Property User Control

GetGeometryPropertyControl()

public GeometryPropertyControl GetGeometryPropertyControl()

Get Geometry Property User Control

Returns

TypeDescription
GeometryPropertyControlGeometry Property User Control

Examples

// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private Panel panelView;

private void Example()
{
VIZCore3D.NET.Controls.GeometryPropertyControl geometryControl =
vizcore3d.Object3D.GeometryProperty.GetGeometryPropertyControl();

geometryControl.Dock = DockStyle.Fill;

panelView.Controls.Add(geometryControl);
}