Packagecom.esri.bacore
Classpublic class TaskResultOutput
InheritanceTaskResultOutput Inheritance Object

The TaskResultOutput class encapsulates an output from a Community Analyst Task producing multiple output results. An instance of this class can contain a feature record set, an array of report infos, and an output map image data.



Public Properties
 PropertyDefined By
  mapImage : MapImage
[read-only] MapImage returned by a Community Analyst Task.
TaskResultOutput
  recordSet : FeatureSet
[read-only] Feature record set returned by a Community Analyst Task.
TaskResultOutput
  reports : Array
[read-only] Array of ReportInfo objects returned by a Community Analyst Task.
TaskResultOutput
Public Methods
 MethodDefined By
  
TaskResultOutput(recordSet:FeatureSet, mapImage:MapImage, reports:Array)
Creates a new instance of the TaskResultOutput class.
TaskResultOutput
Property Detail
mapImageproperty
mapImage:MapImage  [read-only]

MapImage returned by a Community Analyst Task.


Implementation
    public function get mapImage():MapImage

See also

recordSetproperty 
recordSet:FeatureSet  [read-only]

Feature record set returned by a Community Analyst Task.


Implementation
    public function get recordSet():FeatureSet

See also

reportsproperty 
reports:Array  [read-only]

Array of ReportInfo objects returned by a Community Analyst Task.


Implementation
    public function get reports():Array

See also

Constructor Detail
TaskResultOutput()Constructor
public function TaskResultOutput(recordSet:FeatureSet, mapImage:MapImage, reports:Array)

Creates a new instance of the TaskResultOutput class.

Parameters
recordSet:FeatureSet — Feature record set.
 
mapImage:MapImage — Map image.
 
reports:Array — Array of ReportInfo items.

See also