![]() | Object3DManagerIsChildObject3d Method |
Namespace: VIZCore3DX.NET.Manager
public bool IsChildObject3d( int entityID, int parentIndex, int nodeIndex )
// VIZCore3DX.NET Control private VIZCore3DX.NET.VIZCore3DXControl vizcore3dx; private void Example() { int parentIndex = 4; int childIndex = 100; bool result = vizcore3dx.Object3D.IsChildObject3d(parentIndex, childIndex); if (result == true) System.Console.WriteLine("Index is a child."); else System.Console.WriteLine("Index is not a child."); }