GetUDATreeControl
Overloads
| Name | Description |
|---|---|
| GetUDATreeControl() | Get UDA (User-Defined Attributes) Tree Control |
GetUDATreeControl()
public UDATreeControl GetUDATreeControl()
Get UDA (User-Defined Attributes) Tree Control
Returns
| Type | Description |
|---|---|
| UDATreeControl | UDA (User-Defined Attributes) Tree Control |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private Panel panelView;
private void Example()
{
VIZCore3D.NET.Controls.UDATreeControl udaControl =
vizcore3d.Object3D.UDA.GetUDATreeControl();
udaControl.Dock = DockStyle.Fill;
panelView.Controls.Add(udaControl);
}