| Package | com.esri.baserver.tasks.stdgeographies | 
| Class | public class CreateStdGeographiesParameters | 
| Inheritance | CreateStdGeographiesParameters    AnalysisParameters   BATaskParameters   Object | 
Output options for this task include creating
	 a feature class for subsequent analysis (outputTypes.getFeatureClass). 
	 If no output options are specified, the feature class will be returned in the case when the
	 outputAnalysisItem is absent.
See also
| Property | Defined By | ||
|---|---|---|---|
![]()  | activeDatasetID : String 
		 Active dataset ID.  | BATaskParameters | |
| featureList : Array 
		 Array of features to be exported from standard geography levels.  | CreateStdGeographiesParameters | ||
| outputAnalysisItem : FolderItem 
		 Configuration options for storing the output feature class in the repository.  | CreateStdGeographiesParameters | ||
| outputSpatialReference : SpatialReference 
		 The spatial reference to return the output feature set in.  | CreateStdGeographiesParameters | ||
![]()  | outputTypes : OutputTypes 
		 Task output types.  | BATaskParameters | |
![]()  | resultType : BAResultType [read-only] 
		 Type of the result returned by the task associated with these parameters.  | BATaskParameters | |
| returnGeometry : Boolean 
		 An option specifying the presence of the shape attribute in the returned record set.  | CreateStdGeographiesParameters | ||
![]()  | taskName : String [read-only] 
		 Name of a Community Analyst Task associated with these parameters.  | BATaskParameters | |
| Method | Defined By | ||
|---|---|---|---|
CreateStdGeographiesParameters(featureList:Array = null) 
		 Creates a new instance of the CreateStdGeographiesParameters class.  | CreateStdGeographiesParameters | ||
| featureList | property | 
featureList:ArrayArray of features to be exported from standard geography levels. This array contains instances of the StdGeographiesFeaturesInLevel type.
    public function get featureList():Array    public function set featureList(value:Array):voidSee also
| outputAnalysisItem | property | 
outputAnalysisItem:FolderItemConfiguration options for storing the output feature class in the repository.
    public function get outputAnalysisItem():FolderItem    public function set outputAnalysisItem(value:FolderItem):void| outputSpatialReference | property | 
outputSpatialReference:SpatialReferenceThe spatial reference to return the output feature set in.
    public function get outputSpatialReference():SpatialReference    public function set outputSpatialReference(value:SpatialReference):void| returnGeometry | property | 
returnGeometry:BooleanAn option specifying the presence of the shape attribute in the returned record set.
 The default value is true.
    public function get returnGeometry():Boolean    public function set returnGeometry(value:Boolean):void| CreateStdGeographiesParameters | () | Constructor | 
public function CreateStdGeographiesParameters(featureList:Array = null)Creates a new instance of the CreateStdGeographiesParameters class.
ParametersfeatureList:Array (default = null) — Array of features to be exported from standard geography levels.
		 This array contains instances of the StdGeographiesFeaturesInLevel type.
		  | 
                     
     var parameters : CreateStdGeographiesParameters = new CreateStdGeographiesParameters();
     
     // featureList is an array of com.esri.baserver.StdGeographiesFeaturesInLevel types, e.g.
     //var featureInLevel:StdGeographiesFeaturesInLevel = new StdGeographiesFeaturesInLevel();
     //featureInLevel.levelID = "US.Counties";
     //featureInLevel.featureID = new Array("01021", "01045", "01121"); 
     
     parameters.featureList = [ featureInLevel ];
      
     createStdGeographiesTask.execute(parameters, new Responder(resultHandler, faultHandler));