|
|
|
|
|
- Limitations for the controls used
Simulates a mouse event (left click, right click, double click, ...).
// Click on EDT_TypeLogin edit control EmulateMouse(EDT_TypeLogin, emLeftClick, 3, 10) // Type "MARK" in this control EmulateInput(EDT_TypeLogin, "Mark", eiShift) // Click the Validate Button control EmulateMouse(EDT_ValidateButton, emLeftClick, 5, 5)
Sintaxis
EmulateMouse(<Window or control> , <Action to perform> [, <X> , <Y>])
<Window or control>: Window name or control name Name of window or control on which the mouse event will be performed. <Action to perform>: Integer constant (or combination of constants) Indicates the mouse event to simulate: | | eiAlt | Holds the Alt key down during the action. This constant can be combined with other constants. | eiControl | Holds the Ctrl key down during the action. This constant can be combined with other constants. | eiShift | Holds the Shift key down during the action. This constant can be combined with other constants. | emLeftButtonDown | Presses the left button. | emLeftButtonUp | Releases the left button. | emLeftClick | Performs a left click. | emLeftDoubleClick | Performs a left double-click. | emRightButtonDown | Presses the right button. | emRightButtonUp | Releases the right button. | emRightClick | Performs a right click. | emRightDoubleClick | Performs a right double-click. |
<X>: Optional integer Horizontal position (or X-coordinate) in pixels where the action must be performed. This position is given in relation to the upper-left corner of the window or control used. <Y>: Optional integer Vertical position (or Y-coordinate) in pixels where the action must be performed. This position is given in relation to the upper-left corner of the window or control used.
Observaciones Limitations for the controls used EmulateMouse is not compatible with the following types of controls: - Image control.
- Progress Bar control.
- Static Text control.
- OLE control.
- Shape control,
- HTML control,
- Web Camera control.
- Conference control.
- Bar Code control.
- Internal Window control
- Chart control.
Caution: The EmulateMouse function does not work on a non-interactive TSE session.. Clasificación Lógica de negocio / UI: Código UI
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|