com.esri.arcgis.controls
Class IARGlobeControlEventsOnActionEvent
java.lang.Object
   java.util.EventObject
java.util.EventObject
       com.esri.arcgis.controls.IARGlobeControlEventsOnActionEvent
com.esri.arcgis.controls.IARGlobeControlEventsOnActionEvent
- All Implemented Interfaces: 
- Serializable
- public class IARGlobeControlEventsOnActionEvent 
- extends EventObject
Description
 The OnAction event triggers before an action occurs with the ArcReaderGlobeControl, and provides you with a mechanism for suppressing the action from taking place or customising the action that will take place. 
action indicates the type of action taking place.
data supplied as part of the action.
suppressAction specifies a boolean indicating whether the default action will be suppressed. By default the action will not be suppressed
 Product Availability
 Available with ArcGIS Desktop. Requires Publisher Extension.
- See Also:
- Serialized Form
 
 
 
 
 
 
IARGlobeControlEventsOnActionEvent
public IARGlobeControlEventsOnActionEvent(Object source)
init
public void init(int action,
                 Object data,
                 boolean[] suppressAction)
- 
 
getAction
public final int getAction()
- 
 
getData
public final Object getData()
- 
 
getSuppressAction
public final boolean getSuppressAction()
- 
 
setSuppressAction
public final void setSuppressAction(boolean suppressAction)
-