public Actions.Action.Enumerations.Type[] types
{
get
{
return new Actions.Action.Enumerations.Type[] { Actions.Action.Enumerations.Type.Library };
}
}
public string LibraryName
{
get
{
return "Delay";
}
}
Method called on Stop button press event while recording, used to unsubscribe a custom event inside actions. Used to facilitate graceful stop of an ongoing action.
Elements
| Name | Description |
|---|---|
| ButtonUp | Implements the mouse up event for the left mouse button. |
| ButtonDown | Implements the mouse down event for the left mouse button. |
| RightButtonUp | Implements the mouse up event for the right mouse button. |
| RightButtonDown | Implements the mouse down event for the right mouse button. |
| Click | Implements the mouse click event for the left mouse button. |
| DblClick | Implements the mouse double-click event for the left mouse button. |
| DragStart | Implements the mouse dragging start event for the left mouse button. |
| DragFinished | Implements the mouse dragging complete event for the left mouse button. |
| RightButtonDragStart | Implements the mouse dragging start event for the right mouse button. |
| RightButtonDragFinished | Implements the mouse dragging complete event for the right mouse button. |
| Wheel | Implements the mouse wheel event for the mouse wheel. |
| Delay | Implements a delay. |
| Move | Implements the mouse move event for the mouse. |
| KeyUp | Implements the key up event for the keyboard. |
| KeyDown | Implements the key down event for the keyboard. |
| KeyPress | Implements the key press event for the keyboard. |
| WndProc | Implements a windows message processor. |
| JavaScript | Implements a JavaScript processor engine. |
| Library | Implements a library. |