Arbortext IsoView > Programmer's Reference > Configuration Functions
  
Configuration Functions
ConfigEvents
This method allows you to select which events will be generated by Arbortext IsoView. Disabling unneeded events will increase performance. (See Events. For constant values, see Event Configuration Constants – ConfigEvents.)
Introduced with Arbortext IsoView 2.0.
Syntax
ConfigEventsevents
The events parameter defines which events are enabled. Allowed values are:
1
HsHIT
2
FileChanged
4
ContextMenuItemHit
8
PropertyChanged
16
InitFinished
32
ObjectHit
64
ViewWindowChanged
1024
MouseMove
2048
MouseDown
4096
MouseUp
8192
DontHandleClicks
This prevents Arbortext IsoView from internal click handling (i.e., from bringing up a context menu). It must always be combined with MouseMove + MouseDown.
Add values to combine enabled events. The default events setting is (1+2+4+8+16).
By default, mouse events are disabled; all others are enabled.
// enable default events + mouse move
document.ivx1.ConfigEvents(1+2+4+8+16+32+1024);