Modifier l'événement lorsque cliquez sur plusieurs API Revit
public Result OnStartup( UIControlledApplication a )
{
selectionChangedWatcher = new SelectionChangedWatcher( a );
selectionChangedWatcher.SelectionChanged
+= new EventHandler(
selectionChangedWatcher_SelectionChanged);
// . . .
Sore Stork