Click or drag to resize

Object3DManagerIsChildObject3d Method

현재 노드 인덱스가 지정된 부모의 자식 노드 여부 확인

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public bool IsChildObject3d(
	int parentIndex,
	int nodeIndex
)

Parameters

parentIndex
Type: SystemInt32
확인하고자 하는 부모(조상) 노드 인덱스
nodeIndex
Type: SystemInt32
현재 노드 인덱스

Return Value

Type: Boolean
결과: True(지정된 부모의 자식 노드) / False(지정된 부모의 자식노드가 아님)
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    int parentIndex = 4;
    int childIndex = 100;

    bool result = vizcore3d.Object3D.IsChildObject3d(parentIndex, childIndex);

    if (result == true)
        System.Console.WriteLine("Index is a child.");
    else
        System.Console.WriteLine("Index is not a child.");
}
See Also