Parameters
- index
- The index of the node. Node indices start at 1. The first four nodes are super nodes, so data nodes start with index 5.
- tagValue
- The tag value to set.
| Exception | Description |
|---|---|
| ArcGIS.Core.CalledOnWrongThreadException | This method must be called on the MCT. Use QueuedTask.Run. |
| ArcGIS.Core.Data.Exceptions.TinException | The editor is not in edit mode. |
{
// Set the tag value for edge #6
tinEditor.SetEdgeTagValue(6, 42);
// Set the tag value for node #8
tinEditor.SetNodeTagValue(8, 93);
// Set the tag value for triangle #9
tinEditor.SetTriangleTagValue(9, 17);
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)