ICustomSearchableDataSet.Search Methods
Searches for features with an attribute whose value match the specified search text.
Overload List
Name | Description | |
---|---|---|
Public method | Search(System.String text, System.Int32 count) | Returns features that have an attribute that match the specified search text. |
Public method | Search(System.String text, Rectangle area, System.Int32 count) | Returns features that have an attribute that match the specified search text inside the specified area. |
Search(System.String text, System.Int32 count)
Returns features that have an attribute that match the specified search text.Syntax
public FeatureCollection Search (
System.String text,
System.Int32 count
)
Parameters
The search text.
The maximum number of features to return. If zero or less return all matches.
Return Value
Features with an attribute that match text.
Remarks
To make the implementation match the behavior of the ISearchable implementations provided by the built-in datasets you should:
Only return clones of the features instances owned by the dataset.
Set the searchMatchText, searchMatchType and searchMatchAttribute attributes on the clones that are returned. See ISearchable.Search for how these attributes are used to give information about the match to the caller.
Search(System.String text, Rectangle area, System.Int32 count)
Returns features that have an attribute that match the specified search text inside the specified area.Syntax
public FeatureCollection Search (
System.String text,
Rectangle area,
System.Int32 count
)
Parameters
The search text.
An area to search inside. Specified in the coordinate reference system of the dataset.
The maximum number of features to return. If zero or less return all matches.
Return Value
Features inside area with an attribute that match text.
Remarks
To make the implementation match the behavior of the ISearchable implementations provided by the built-in datasets you should:
Only return clones of the features instances owned by the dataset.
Set the searchMatchText, searchMatchType and searchMatchAttribute attributes on the clones that are returned. See ISearchable.Search for how these attributes are used to give information about the match to the caller.
Platforms
Windows, Linux, Android