ContextMenuItem.hx 325 B

123456789
  1. package flash.ui;
  2. @:final extern class ContextMenuItem extends flash.display.NativeMenuItem {
  3. var caption : String;
  4. var separatorBefore : Bool;
  5. var visible : Bool;
  6. function new(caption : String, separatorBefore : Bool = false, enabled : Bool = true, visible : Bool = true) : Void;
  7. function clone() : ContextMenuItem;
  8. }