csplus.remove_event_listener
|
This function removes the specified listener from the list of functions to be called when an event happen in CS+.
[Specification format]
csplus.remove_event_listener(listener)
|
[Argument(s)]
|
|
listener
|
Specifies the listener function to remove.
|
[Return value]
None
[Example of use]
>>> def listener1(event): print("Listener 1: " + event)
...
>>> csplus.add_event_listener(listener1)
>>> csplus.remove_event_listener(listener1)
>>>
|