How to monitor the vertex modify of a polyline

How to monitor the vertex modify of a polyline

Anonymous
Not applicable
614 Views
2 Replies
Message 1 of 3

How to monitor the vertex modify of a polyline

Anonymous
Not applicable
when modifying a vertex of a polyline using mouse drag, i need to monitor this event and then modify the other properties of the line.
i could react the change through the DatabaseReactor::objModified event , but in this method it is forbidden to modify the line again ( to avoid the infinite circulation ).
Any other place could i react the vertex modify?
0 Likes
615 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
Add the id of the pline to an (global) IdArray (there's an ObjectIdArray im
ARX, so i guess there's something similar in .NET.

Check that idArray in objClosed and do your stuff.

/Matt


wrote in message news:[email protected]...
when modifying a vertex of a polyline using mouse drag, i need to monitor
this event and then modify the other properties of the line.
i could react the change through the DatabaseReactor::objModified event ,
but in this method it is forbidden to modify the line again ( to avoid the
infinite circulation ).
Any other place could i react the vertex modify?
0 Likes
Message 3 of 3

Anonymous
Not applicable
I correct myself
commandEnded is the place to change the pline

/Matt


"Matt" wrote in message
news:[email protected]...
Add the id of the pline to an (global) IdArray (there's an ObjectIdArray im
ARX, so i guess there's something similar in .NET.

Check that idArray in objClosed and do your stuff.

/Matt


wrote in message news:[email protected]...
when modifying a vertex of a polyline using mouse drag, i need to monitor
this event and then modify the other properties of the line.
i could react the change through the DatabaseReactor::objModified event ,
but in this method it is forbidden to modify the line again ( to avoid the
infinite circulation ).
Any other place could i react the vertex modify?
0 Likes