GeoprocessingParameters QML Type
Contains input parameters that are sent to the target geoprocessing task. More...
Import Statement: | import Esri.ArcGISRuntime |
Since: | Esri.ArcGISRuntime 100.0 |
Inherits: |
- List of all members, including inherited members
- GeoprocessingParameters is part of QML Type List.
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
executionType : Enums.GeoprocessingExecutionType |
The Enums.GeoprocessingExecutionType for this GeoprocessingParameters.
inputs : jsobject |
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.
returnM : bool |
Whether geoprocessing should return m-values.
returnZ : bool |
Whether geoprocessing should return z-values.
Signal Documentation
executionTypeChanged() |
The signal emitted when the executionType property changes.
Note: The corresponding handler is onExecutionTypeChanged
.
inputsChanged() |
The signal emitted when the inputs property changes.
Note: The corresponding handler is onInputsChanged
.
outputSpatialReferenceChanged() |
The signal emitted when the outputSpatialReference property changes.
Note: The corresponding handler is onOutputSpatialReferenceChanged
.
processSpatialReferenceChanged() |
The signal emitted when the processSpatialReference property changes.
Note: The corresponding handler is onProcessSpatialReferenceChanged
.
returnMChanged() |
The signal emitted when the returnM property changes.
Note: The corresponding handler is onReturnMChanged
.
returnZChanged() |
The signal emitted when the returnZ property changes.
Note: The corresponding handler is onReturnZChanged
.