Packagecom.esri.ags.events
Classpublic final class AttributeInspectorEvent
InheritanceAttributeInspectorEvent Inheritance flash.events.Event

Since : ArcGIS API for Flex 2.0

Event dispatched when a graphic is rendered in the attribute inspector

See also

com.esri.ags.components.AttributeInspector


Public Properties
 PropertyDefined By
  feature : Graphic
Reference to a graphic instance.
AttributeInspectorEvent
  featureLayer : FeatureLayer
Reference to a feature layer.
AttributeInspectorEvent
  field : Field
A field reference.
AttributeInspectorEvent
  newValue : Object
The new field value.
AttributeInspectorEvent
  oldValue : Object
The old field value.
AttributeInspectorEvent
Public Methods
 MethodDefined By
  
AttributeInspectorEvent(type:String, bubbles:Boolean, featureLayer:FeatureLayer = null, feature:Graphic = null, field:Field = null, oldValue:Object = null, newValue:Object = null)
Creates a new AttributeInspectorEvent.
AttributeInspectorEvent
Public Constants
 ConstantDefined By
  DELETE_FEATURE : String = deleteFeature
[static] Defines the value of the type property of the event object for a deleteFeature event.
AttributeInspectorEvent
  SHOW_FEATURE : String = showFeature
[static] Defines the value of the type property of the event object for a showFeature event.
AttributeInspectorEvent
  UPDATE_FEATURE : String = updateFeature
[static] Defines the value of the type property of the event object for a updateFeature event.
AttributeInspectorEvent
Property Detail
featureproperty
public var feature:Graphic

Reference to a graphic instance. The attributes property contains the new values.

featureLayerproperty 
public var featureLayer:FeatureLayer

Reference to a feature layer.

fieldproperty 
public var field:Field

A field reference.

newValueproperty 
public var newValue:Object

The new field value.

oldValueproperty 
public var oldValue:Object

The old field value.

Constructor Detail
AttributeInspectorEvent()Constructor
public function AttributeInspectorEvent(type:String, bubbles:Boolean, featureLayer:FeatureLayer = null, feature:Graphic = null, field:Field = null, oldValue:Object = null, newValue:Object = null)

Creates a new AttributeInspectorEvent.

Parameters
type:String — The event type.
 
bubbles:Boolean — The bubbling condition
 
featureLayer:FeatureLayer (default = null) — Reference to a feature layer instance.
 
feature:Graphic (default = null) — Reference to a graphic instance.
 
field:Field (default = null) — Reference to a field.
 
oldValue:Object (default = null) — The old value.
 
newValue:Object (default = null) — The new value.
Constant Detail
DELETE_FEATUREConstant
public static const DELETE_FEATURE:String = deleteFeature

Defines the value of the type property of the event object for a deleteFeature event.

SHOW_FEATUREConstant 
public static const SHOW_FEATURE:String = showFeature

Defines the value of the type property of the event object for a showFeature event.

UPDATE_FEATUREConstant 
public static const UPDATE_FEATURE:String = updateFeature

Defines the value of the type property of the event object for a updateFeature event.