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.1104 (2.8.24.1104)
Syntax
C#
public GeometryPropertyControl GetGeometryPropertyControl()

Return Value

Type: GeometryPropertyControl
Geometry Property User Control
Examples
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