Click or drag to resize

GeometryPropertyManagerGetGeometryPropertyControl Method

Get Geometry Property User Control

Namespace: VIZCore3D.NET.Manager
Assembly: VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.910 (2.8.24.910)
Syntax
C#
public GeometryPropertyControl GetGeometryPropertyControl()

Return Value

GeometryPropertyControl
Geometry Property User Control
Example
C#
// 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);
}
See Also