Description If an ARN is currently displayed in the 3D view, this subroutine cancels its display. If the ARN is not being displayed in the 3D view, this subroutine has no effect.
Syntax ARNCancelDisplayInVisualizationView arnNode
Parameters arnNode As Long Node number of the ARN being requested to cancel display in the 3D view.
Example The following example loops over all possible ARN node numbers, checks to see if the node number is a valid ARN, then requests to cancel the node's display in the visualization view.
Dim arnNode As Long
'loop over ARN nodes and cancel all display in visualization view For arnNode = ARNGetMaxNodeNum() To 0 Step -1 If ARNIsValidNode( arnNode ) Then ARNCancelDisplayInVisualizationView arnNode End If Next arnNode
See Also
|