Packagemx.controls
Interfacepublic interface IFlexContextMenu
Implementors FlexNativeMenu

The IFlexContextMenu interface defines the interface for a Flex context menus.

See also

mx.core.UIComponent.flexContextMenu


Public Methods
 MethodDefined By
  
Sets the context menu of an InteractiveObject.
IFlexContextMenu
  
Unsets the context menu of a InteractiveObject.
IFlexContextMenu
Method Detail
setContextMenu()method
public function setContextMenu(component:InteractiveObject):void

Sets the context menu of an InteractiveObject. This will do all the necessary steps to add ourselves as the context menu for this InteractiveObject, such as adding listeners, etc..

Parameters

component:InteractiveObject — InteractiveObject to set context menu on

unsetContextMenu()method 
public function unsetContextMenu(component:InteractiveObject):void

Unsets the context menu of a InteractiveObject. This will do all the necessary steps to remove ourselves as the context menu for this InteractiveObject, such as removing listeners, etc..

Parameters

component:InteractiveObject — InteractiveObject to unset context menu on