FormModifierFlags
Defined in: src/core/types.ts:1188
Keyboard modifier flags for form event methods.
These flags indicate which modifier keys are held during an event. Combine with bitwise OR for multiple modifiers.
Example
Section titled “Example”page.formMouseMove(FormModifierFlags.Shift | FormModifierFlags.Control, x, y);Enumeration Members
Section titled “Enumeration Members”| Enumeration Member | Value | Description | Defined in |
|---|---|---|---|
Alt | 4 | Alt key held. | src/core/types.ts:1196 |
Control | 2 | Control key held. | src/core/types.ts:1194 |
MetaOrCommand | 8 | Meta (macOS Command) key held. | src/core/types.ts:1198 |
None | 0 | No modifier keys held. | src/core/types.ts:1190 |
Shift | 1 | Shift key held. | src/core/types.ts:1192 |