ContextMenuItem.hx 319 B

12345678910
  1. package flash.ui;
  2. extern class ContextMenuItem extends flash.events.EventDispatcher {
  3. var caption : String;
  4. var enabled : Bool;
  5. var separatorBefore : Bool;
  6. var visible : Bool;
  7. function new(caption : String, ?separatorBefore : Bool, ?enabled : Bool, ?visible : Bool) : Void;
  8. function clone() : ContextMenuItem;
  9. }