GetUDAControl
Overloads
| Name | Description |
|---|---|
| GetUDAControl() | Get UDA (User-Defined Attributes) Control |
GetUDAControl()
public UDAControl GetUDAControl()
Get UDA (User-Defined Attributes) Control
Returns
| Type | Description |
|---|---|
| UDAControl | UDA (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);
}