Contains input parameters that are sent to the target geoprocessing task. More...
Import Statement: | import Esri.ArcGISRuntime 100.15 |
Since: | Esri.ArcGISRuntime 100.0 |
Inherits: |
Properties
- executionType : Enums.GeoprocessingExecutionType
- inputs : jsobject
- outputSpatialReference : SpatialReference
- processSpatialReference : SpatialReference
- returnM : bool
- returnZ : bool
Signals
- executionTypeChanged()
- inputsChanged()
- outputSpatialReferenceChanged()
- processSpatialReferenceChanged()
- returnMChanged()
- returnZChanged()
Detailed Description
GeoprocessingParameters contains both input parameters and environment variables that are used in the target geoprocessing task. At a minimum all parameters that are set as required on the published task must to be provided to run the task successfully. Parameters that have default values can be overridden by providing a new value in the inputs dictionary. Optional parameters can be provided the same way.
Property Documentation
The Enums.GeoprocessingExecutionType for this GeoprocessingParameters.
Returns the input parameters.
The key contains the name of the input parameter (as a string) and the value contains its value (as a GeoprocessingParameter).
outputSpatialReference : SpatialReference |
The output SpatialReference for geoprocessing results.
If processSpatialReference is set but outputSpatialReference is not, the outputs are returned in the spatial reference set in processSpatialReference.
processSpatialReference : SpatialReference |
The SpatialReference that geoprocecessing should use during processing.
If processSpatialReference is set but outputSpatialReference is not, the outputs are returned in the spatial reference set in processSpatialReference.
Signal Documentation
The signal emitted when the executionType property changes.
Note: The corresponding handler is onExecutionTypeChanged
.
The signal emitted when the inputs property changes.
Note: The corresponding handler is onInputsChanged
.
The signal emitted when the outputSpatialReference property changes.
Note: The corresponding handler is onOutputSpatialReferenceChanged
.
The signal emitted when the processSpatialReference property changes.
Note: The corresponding handler is onProcessSpatialReferenceChanged
.
The signal emitted when the returnM property changes.
Note: The corresponding handler is onReturnMChanged
.
The signal emitted when the returnZ property changes.
Note: The corresponding handler is onReturnZChanged
.