IMEEvent.hx 409 B

12345678
  1. package flash.events;
  2. extern class IMEEvent extends TextEvent {
  3. @:require(flash10_1) var imeClient : flash.text.ime.IIMEClient;
  4. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?text : String, ?imeClient : flash.text.ime.IIMEClient) : Void;
  5. static var IME_COMPOSITION(default,never) : String;
  6. @:require(flash10_1) static var IME_START_COMPOSITION(default,never) : String;
  7. }