public TinTriangle GetTriangleByIndex( int index )
Public Function GetTriangleByIndex( _ ByVal index As Integer _ ) As TinTriangle
Parameters
- index
- The index of the triangle to get.
Return Value
A TinTriangle.
public TinTriangle GetTriangleByIndex( int index )
Public Function GetTriangleByIndex( _ ByVal index As Integer _ ) As TinTriangle
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 node = tinDataset.GetNodeByIndex(23)) { } using (ArcGIS.Core.Data.Analyst3D.TinEdge edge = tinDataset.GetEdgeByIndex(45)) { } using (ArcGIS.Core.Data.Analyst3D.TinTriangle triangle = tinDataset.GetTriangleByIndex(22)) { }
Target Platforms: Windows 11, Windows 10