| Package | com.esri.ags.tasks |
| Class | public class FindParameters |
myFindTask.execute( myFindParams );
See also
| Property | Defined by | ||
|---|---|---|---|
| contains : Boolean = true
The Contains Parameter.
| FindParameters | ||
| layerIds : Array
The layers to perform the Find operation on.
| FindParameters | ||
| outSpatialReference : SpatialReference
The well-known ID of the spatial reference of the output geometries.
| FindParameters | ||
| returnGeometry : Boolean
If
true, each feature in the FeatureSet includes the geometry. | FindParameters | ||
| searchFields : Array
A list of names of the fields to search.
| FindParameters | ||
| searchText : String
The search string text that is searched across the layers and the fields
as specified in the layers and searchFields parameters.
| FindParameters | ||
| contains | property |
public var contains:Boolean = trueThe Contains Parameter. If false, the operation searches for an exact match of the searchText string. Otherwise, it searches for a value that contains the searchText provided.
The default value is true.
| layerIds | property |
public var layerIds:ArrayThe layers to perform the Find operation on. The ID is returned in layerInfos.
myFindParameters.layerIds = [0,1,2];| outSpatialReference | property |
public var outSpatialReference:SpatialReferenceThe well-known ID of the spatial reference of the output geometries. If outSR is not specified, the output geometries are returned in the spatial reference of the map.
| returnGeometry | property |
public var returnGeometry:Boolean
If true, each feature in the FeatureSet includes the geometry.
This should be set to false if you do not plan to include highlighted features on a map since the geometry
makes up a significant portion of the response.
By default, this is false.
| searchFields | property |
public var searchFields:ArrayA list of names of the fields to search. If not specified, all fields will be searched.
| searchText | property |
public var searchText:StringThe search string text that is searched across the layers and the fields as specified in the layers and searchFields parameters.