SoftKeyboardEvent.hx 732 B

12345678910111213
  1. package flash.events;
  2. extern class SoftKeyboardEvent extends Event {
  3. @:flash.property var relatedObject(get,set) : flash.display.InteractiveObject;
  4. @:flash.property var triggerType(get,never) : String;
  5. function new(type : String, bubbles : Bool, cancelable : Bool, relatedObjectVal : flash.display.InteractiveObject, triggerTypeVal : String) : Void;
  6. private function get_relatedObject() : flash.display.InteractiveObject;
  7. private function get_triggerType() : String;
  8. private function set_relatedObject(value : flash.display.InteractiveObject) : flash.display.InteractiveObject;
  9. static final SOFT_KEYBOARD_ACTIVATE : String;
  10. static final SOFT_KEYBOARD_ACTIVATING : String;
  11. static final SOFT_KEYBOARD_DEACTIVATE : String;
  12. }