Name |
since TypeLib |
Description |
SelectionChanged |
1.0 |
Selection in the editor has changed. The Authentic.CurrentSelection object now contains valid information. The properties of the Authentic.event object are not set. |
ControlInitialized |
1.2 |
The control is now fully loaded and initialized. The properties of the Authentic.event object are not set. |
dragover |
1.8 |
A drag-over operation is occuring. |
drop |
1.8 |
A drop operation has happened. |
keydown |
1.8 |
A key has been pressed but not yet released. |
keyup |
1.8 |
A key on the keyboard has been released. This is usually the event to react on keystrokes. |
keypressed |
1.8 |
Raised on any keyboard input. |
mousemove |
1.8 |
The mouse pointer has been moved. |
buttonup |
1.8 |
One of the mouse buttons has been released. |
buttondown |
1.8 |
One of the mouse buttons has been pushed. |
contextmenu |
1.8 |
Sent after receiving WM_CONTEXTMENU. |
editpaste |
1.8 |
Called before a paste operation takes place. |
editcut |
1.8 |
Called before a cut operation takes place. |
editcopy |
1.8 |
Called before a copy operation takes place. |
editclear |
1.8 |
Called before a clear operation takes place. |
doceditcommand |
1.8 |
Raised on executing an Authentic command and to implement a custom command handler. See also Events: Toolbarbuttons. The properties of the Authentic.event object are not set. |
buttondoubleclick |
1.8 |
One of the mouse buttons has been double-clicked. |
If no exception is mentioned in the description the properties of the Authentic.event object are set on calling the event handler.
Note: | These event-handlers are synchronous, that is, they are called immediately when the event occurs. |