Packagecom.esri.ags.events
Classpublic class FindEvent
InheritanceFindEvent Inheritance flash.events.Event

Represents event objects that are specific to FindTask. Fires when the Find operation is complete. The findResults is an array of FindResult.

See also

com.esri.ags.tasks.FindTask
Live sample - Find features (uses FindEvent)
Live sample - Zoom to found features


Public Properties
 PropertyDefined By
  findResults : Array
Array of FindResult.
FindEvent
Public Methods
 MethodDefined By
  
FindEvent(type:String, findResults:Array = null)
Creates a new FindEvent.
FindEvent
Public Constants
 ConstantDefined By
  EXECUTE_COMPLETE : String = executeComplete
[static] Defines the value of the type property of an executeComplete event object.
FindEvent
Property Detail
findResultsproperty
public var findResults:Array

Array of FindResult. This property is set when the type is executeComplete.

See also

Constructor Detail
FindEvent()Constructor
public function FindEvent(type:String, findResults:Array = null)

Creates a new FindEvent.

Parameters
type:String — The event type; indicates the action that triggered the event.
 
findResults:Array (default = null) — The findResults associated with this event, or null.
Constant Detail
EXECUTE_COMPLETEConstant
public static const EXECUTE_COMPLETE:String = executeComplete

Defines the value of the type property of an executeComplete event object.