SelectedPoints
EventSelectedPoints (Event)
This event is related with the command SelectPoints which has been used in the drawing to select points with a specific key name. When a selection of every point is executed this event is triggered
Syntax:
Private Sub object_SelectedPoints(Sender As System.Object, e As SelectedPointsEventArgs)
The SelectedPoints event syntax has the following parts:
Argument |
Data Type |
Description |
Sender |
System.Object |
The object that raises the event |
e.SelectId |
String |
A String expression that defines the key name of the Select Points process |
e.lPointNumber |
Integer |
The number of the last selected point |
e.x1() |
Single |
An array of Singles for the x coordinates of the selected points |
e.y1() |
Single |
An array of Singles for the y coordinates of the selected points |
e.z1() |
Single |
An array of Singles for the z coordinates of the selected points |