Parameters
- index
- The index of the node to get.
Return Value
A TinNode.
| Exception | Description |
|---|---|
| ArcGIS.Core.CalledOnWrongThreadException | This method or property must be called within the lambda passed to QueuedTask.Run |
| ArcGIS.Core.Data.Exceptions.TinException | The specified index is out of range. |
using statement or a finally block.{
using (ArcGIS.Core.Data.Analyst3D.TinNode nodeFromIndex = tinDataset.GetNodeByIndex(23))
{
//Do something with the node
}
using (ArcGIS.Core.Data.Analyst3D.TinEdge edgeFromIndex = tinDataset.GetEdgeByIndex(45))
{
//Do something with the edge
}
using (ArcGIS.Core.Data.Analyst3D.TinTriangle triangleFromIndex = tinDataset.GetTriangleByIndex(22))
{
//Do something with the triangle
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)