Packagecom.esri.bao.tasks.stdgeographies
Classpublic final class StdGeographiesByAttributesParameters
InheritanceStdGeographiesByAttributesParameters Inheritance BAUtilityParameters

The StdGeographiesByAttributesParameters class provides input parameters for the Standard Geographies by Attributes task.


Example
ActionScript to create StdGeographiesByAttributesParameters and then use in the StdGeographiesByAttributesTask:
     
 var parameters : StdGeographiesByAttributesParameters = new StdGeographiesByAttributesParameters();
 
 parameters.geoLevelID = "US.ZIP5";
 parameters.searchString = "Redlands";
 
 stdGeographiesByAttributesTask.execute(parameters, new Responder(resultHandler, faultHandler));
 
 

See also

StdgeographiesByAttributesTask


Public Properties
 PropertyDefined by
  geoLevelID : String
Business Analyst Online data layer ID to query features in.
StdGeographiesByAttributesParameters
 InheritedresultType : BAResultType
Type of a result returned by the task associated with these parameters.
BAUtilityParameters
  searchString : String
Search string criterion.
StdGeographiesByAttributesParameters
 InheritedtaskName : String
Name of a Business Analyst task associated with these parameters.
BAUtilityParameters
Public Methods
 MethodDefined by
  
StdGeographiesByAttributesParameters(geoLevelID:String = null, searchString:String = null)
Creates a new instance of the StdGeographiesByAttributesParameters class.
StdGeographiesByAttributesParameters
  
toURLVariables():URLVariables
Converts task parameters to URL variables.
StdGeographiesByAttributesParameters
Property detail
geoLevelIDproperty
geoLevelID:String  [read-write]

Business Analyst Online data layer ID to query features in. The list of available geography levels could be retrieved with GetStandardGeographyLevelsTask task.

Implementation
    public function get geoLevelID():String
    public function set geoLevelID(value:String):void

See also

searchStringproperty 
searchString:String  [read-write]

Search string criterion. It is used to query features of the data layer specified by the geoLevelID property value. A feature of the data layer is recognized as matching feature if its ID or name contains the search string. If the search string is missing or empty, all features of the data layer are recognized as matching features.

Implementation
    public function get searchString():String
    public function set searchString(value:String):void
Constructor detail
StdGeographiesByAttributesParameters()constructor
public function StdGeographiesByAttributesParameters(geoLevelID:String = null, searchString:String = null)

Creates a new instance of the StdGeographiesByAttributesParameters class.

Parameters
geoLevelID:String (default = null) — Business Analyst Online data layer ID to query features in.
 
searchString:String (default = null) — Search string criterion.
Method detail
toURLVariables()method
public override function toURLVariables():URLVariables

Converts task parameters to URL variables.

Returns
URLVariables