|
using the oncomponentselectionnotify event
i am making an application that uses an edrawingviewer control to display assemblies in visual basic .net. i want to make it so that when the user selects a certain part in that assembly, the application would know what part it was and displays information for that part. how do i do that with the oncomponentselectionnotify even?
unfortunately that is beyond the power of edrawings api, at most you can get the components name.
originally posted by: luke malpass
unfortunately that is beyond the power of edrawings api, at most you can get the components name.
i can work with that. how do you get the components name?
it is passed in as the first variable when you recieve your notification:
status = oncomponentselectionnotify ( componentname, xcoordinate, ycoordinate)
also, you can get the name of a component by index position using:
name = emodelviewcontrol.componentname ( config, index ) (vb get property) |
|