Changes between Version 1 and Version 2 of documentation/PythonManual/Events

Show
Ignore:
Author:
lloydw (IP: 203.96.63.172)
Timestamp:
04/01/08 12:57:42 (9 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/PythonManual/Events

    v1 v2  
    22= Events = 
    33 
    4 Events in Python are accessed in inline event handlers through the global variable ''event''. 
     4When an event is sent to python, three global variables are set up in the context of the called function. 
     5  ''event'' - The event object that caused the function call 
     6  ''document'' - The document in which the event fired 
     7  ''self'' - The element context in which the event fired 
    58 
    6 == Interface == 
     9== Event Interface == 
    710 
    811=== Properties ===