Click or drag to resize

Object3DManagerGetNodeId Method

Node Index to Node ID

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public int GetNodeId(
	int index
)

Parameters

index
Type: SystemInt32
Node Index

Return Value

Type: Int32
Node ID
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    int index = 10;
    int id = vizcore3d.Object3D.GetNodeId(index);
}

private void Example1()
{
    int id = 4;
    int index = vizcore3d.Object3D.GetNodeIndex(id);
}
See Also