func_maxgui_gadgetsensitivity.rst 618 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .. _func_maxgui_gadgetsensitivity:
  2. =================
  3. GadgetSensitivity
  4. =================
  5. GadgetSensitivity -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. GadgetSensitivity( gadget:TGadget )
  10. Returns flags specifying whether a gadget emits events from the keyboard or mouse.
  11. The function will return a combination of the following flags:
  12. [
  13. * SENSITIZE_MOUSE: The gadget will emit mouse events.
  14. * SENSITIZE_KEYS: The gadget will emit keyboard events.
  15. ]
  16. See #SetGadgetSensitivity for more information.
  17. Parameters
  18. ==========
  19. Return Values
  20. =============
  21. Nothing.
  22. Examples
  23. ========
  24. See Also
  25. ========