본문으로 건너뛰기

GetUDATreeControl

Overloads

NameDescription
GetUDATreeControl()Get UDA (User-Defined Attributes) Tree Control

GetUDATreeControl()

public UDATreeControl GetUDATreeControl()

Get UDA (User-Defined Attributes) Tree Control

Returns

TypeDescription
UDATreeControlUDA (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);
}