1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .. _func_maxgui_gadgetsensitivity:
- =================
- GadgetSensitivity
- =================
- GadgetSensitivity -
- Description
- ===========
- .. code-block:: blitzmax
- GadgetSensitivity( gadget:TGadget )
- Returns flags specifying whether a gadget emits events from the keyboard or mouse.
- The function will return a combination of the following flags:
- [
- * SENSITIZE_MOUSE: The gadget will emit mouse events.
- * SENSITIZE_KEYS: The gadget will emit keyboard events.
- ]
- See #SetGadgetSensitivity for more information.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- See Also
- ========
|