본문으로 건너뛰기

GetUDAControl

Overloads

NameDescription
GetUDAControl()Get UDA (User-Defined Attributes) Control

GetUDAControl()

public UDAControl GetUDAControl()

Get UDA (User-Defined Attributes) Control

Returns

TypeDescription
UDAControlUDA (User-Defined Attributes) Control

Examples

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

private Panel panelView;

private void Example()
{
VIZCore3D.NET.Controls.UDAControl udaControl =
vizcore3d.Object3D.UDA.GetUDAControl();

udaControl.Dock = DockStyle.Fill;

panelView.Controls.Add(udaControl);
}