ArcGIS Runtime SDK for iOS: AGSRasterFunctionArguments Class Reference
ArcGIS Runtime SDK for iOS  100.15
AGSRasterFunctionArguments Class Reference

Description

Arguments for a raster function.

An instance of this class represents the arguments (inputs) for a raster function.

Since
100
Inheritance diagram for AGSRasterFunctionArguments:
AGSObject

Instance Methods

(void) - setArgument:withName:
 
(void) - setRaster:withName:
 

Class Methods

(instancetype) + rasterFunctionArguments
 

Properties

NSArray< NSString * > * argumentNames
 
NSArray< NSString * > * rasterNames
 

Method Documentation

◆ rasterFunctionArguments

+ (instancetype) rasterFunctionArguments

◆ setArgument:withName:

- (void) setArgument: (NSString *)  argument
withName: (NSString *)  name 

Sets a value for an argument in the raster function

Parameters
argumentThe argument value to set
nameof the argument for which the value is specified. This name must be in the argumentNames list.
Since
100

◆ setRaster:withName:

- (void) setRaster: (AGSRaster *)  raster
withName: (NSString *)  name 

Sets a value for an argument in the raster function

Parameters
rasterThe raster value to set
nameof the raster argument for which the value is specified. This name must be in the rasterNames list.
Since
100

Property Documentation

◆ argumentNames

- (NSArray<NSString *>*) argumentNames
readnonatomiccopy

The names of other arguments in the raster function

Since
100

◆ rasterNames

- (NSArray<NSString *>*) rasterNames
readnonatomiccopy

The names of raster arguments in the raster function

Since
100