com.esri.arcgis.controls
Class IARGlobeControlEventsOnActionEvent

java.lang.Object
  extended by java.util.EventObject
      extended by 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

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
IARGlobeControlEventsOnActionEvent(Object source)
           
 
Method Summary
 int getAction()
           
 Object getData()
           
 boolean getSuppressAction()
           
 void init(int action, Object data, boolean[] suppressAction)
           
 void setSuppressAction(boolean suppressAction)
           
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IARGlobeControlEventsOnActionEvent

public IARGlobeControlEventsOnActionEvent(Object source)
Method Detail

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)