Products Downloads


French version


 

 

 

ChangePage

Triggered when the user changes the active page. The page can be determined using the CURRENT_PAGE property.

 

DD_BeginDrag

Triggered when the user clicks on the object with the left or right mouse button. This event lets the user perform a drag-and-drop operation using the DD_EXECUTE_DRAG method, once the data to be transferred has been specified by the DD_WRITE_DATA method.

The DD_KEYBOARD_STATE and DD_MOUSE_STATE properties identify which buttons and keys are pressed when the event occurs.

The DD_X_AXIS and DD_Y_AXIS properties contain the mouse pointer's position relative to the object.

This event is not triggered when the user clicks on the object's background or header.

 

DD_DragOver

This event is triggered in a destination object when the mouse pointer is over the object.

The DD_KEYBOARD_STATE, DD_MOUSE_STATE, DD_X_AXIS and DD_Y_AXIS properties contain the keyboard and mouse statuses, and the mouse pointer's coordinates relative to the object.

The DD_DATA_AVAILABLE and DD_READ_DATA methods can be used.

The DD_ALLOWED_ACTIONS property contains the actions that the source object allows the user to perform.

At the end of the event, the DD_ACTION_DROP property should contain the action that would be performed if the user released the mouse button at that location. This value is used by the system to determine the mouse pointer shape.

 

DD_Drop

Triggered in a destination object when the user releases the mouse button.

The DD_ACTION_DROP, DD_X_AXIS and DD_Y_AXIS properties contain the action performed and the mouse pointer's coordinates relative to the object.

The DD_DATA_AVAILABLE and DD_READ_DATA methods can be used to retrieve the transferred data.

Releasing the mouse button terminates the DD_EXECUTE_DRAG method that was executed as a result of the source object's DD_BeginDrag event.

If the action moves data, the data must be deleted from the source object.

 

DD_EnterDrag

This event is triggered in a destination object when the mouse pointer is put over the object.

The DD_KEYBOARD_STATE, DD_MOUSE_STATE, DD_X_AXIS and DD_Y_AXIS properties contain the keyboard and mouse statuses, and the mouse pointer's coordinates relative to the object.

The DD_DATA_AVAILABLE and DD_READ_DATA methods can be used.

The DD_ALLOWED_ACTIONS property contains the actions that the source object allows the user to perform.

The DD_ACTION_DROP property can be updated to indicate what action would be performed if the user released the mouse button at that location. This value is used by the system to determine the mouse pointer shape.

 

DD_ExitDrag

This event is triggered in a destination object when the mouse pointer moves away from the object.

 

IconDblClick

Triggered when the user double-clicks/taps on an icon. The ICON_ID property specifies the ID of the selected icon.

 

IconClick

Triggered when the user clicks/taps on an icon. The ICON_ID property specifies the ID of the selected icon.

 

NotificationDblClick

Triggered when the user double-clicks/taps an icon notification text. The ICON_ID property specifies the ID of the selected icon.

 

NotificationClick

Triggered when the user clicks/taps on an icon notification text. The ICON_ID property specifies the ID of the selected icon.

 

 

 

↑ Top of page