Click or drag to resize

Object3DManagerSelect Method (ListInt32, Boolean, Boolean)

개체 선택

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public void Select(
	List<int> index,
	bool selection,
	bool pivot = true
)

Parameters

index
Type: System.Collections.GenericListInt32
Node Index List
selection
Type: SystemBoolean
선택 상태
pivot (Optional)
Type: SystemBoolean
회전 피봇(Pivot) 설정
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    List<VIZCore3D.NET.Data.Node> items = vizcore3d.Object3D.FromFilter(VIZCore3D.NET.Data.Object3dFilter.PARENT_LEAF_ASSEMBLY);

    vizcore3d.Object3D.Select(items, true, true);
}
See Also