Packagemx.controls
Interfacepublic interface IFlexContextMenu

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

See also

mx.core.UIComponent.flexContextMenu


Public Methods
 MethodDefined by
  
setContextMenu(component:InteractiveObject):void
Sets the context menu of an InteractiveObject.
IFlexContextMenu
  
unsetContextMenu(component:InteractiveObject):void
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