ISearchable.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) | Returns all features that have an attribute that match the specified search text. |
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 and that overlap the specified area. |
Search(System.String text)
Returns all features that have an attribute that match the specified search text.Syntax
public FeatureEnumerator Search (
System.String text
)
Parameters
The search text.
Return Value
All features with an attribute that match text.
Remarks
Additional information about each match is returned in the following attributes added to all returned features:
Attribute | Contains |
---|---|
searchMatchAttribute | The attribute that contains the text that was matched. |
searchMatchText | The text that was matched. |
searchMatchType | An Atom that indicates the kind of match. Possible values are:
exact if the search text matches a complete phrase at the start of a text
in the search index. The features in the result are ordered so exact matches are returned first followed by prefix matches and finally the other matches. |
Note that a match tagged as being exact indicates that the search text matches a complete phrase at the start of a text in the search index, it does not indicate that it matched the entire text in the index. For example, if the search index contains the text "New York City" then searching for "New York" will generate an exact match since the search text matches a complete phrase at the start of "New York City" while searching for "New York C" will generate a prefix match.
This method returns all matches which can be a very slow operation and use a lot of memory if the search text is short and matches a lot of features. To prevent this you should in most cases use one of the Search overloads that lets you specify the maximum number of features that can be returned.
Search(System.String text, System.Int32 count)
Returns features that have an attribute that match the specified search text.Syntax
public FeatureEnumerator Search (
System.String text,
System.Int32 count
)
Parameters
The search text.
The maximum number of features to return. If zero or less returns all matches.
Return Value
Features with an attribute that match text.
Remarks
Additional information about each match is returned in the following attributes added to all returned features:
Attribute | Contains |
---|---|
searchMatchAttribute | The attribute that contains the text that was matched. |
searchMatchText | The text that was matched. |
searchMatchType | An Atom that indicates the kind of match. Possible values are:
exact if the search text matches a complete phrase at the start of a text
in the search index. The features in the result are ordered so exact matches are returned first followed by prefix matches and finally the other matches. |
Note that a match tagged as being exact indicates that the search text matches a complete phrase at the start of a text in the search index, it does not indicate that it matched the entire text in the index. For example, if the search index contains the text "New York City" then searching for "New York" will generate an exact match since the search text matches a complete phrase at the start of "New York City" while searching for "New York C" will generate a prefix match.
Search(System.String text, Rectangle area, System.Int32 count)
Returns features that have an attribute that match the specified search text and that overlap the specified area.Syntax
public FeatureEnumerator 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 returns all matches.
Return Value
Features inside area with an attribute that match text.
Remarks
Additional information about each match is returned in the following attributes added to all returned features:
Attribute | Contains |
---|---|
searchMatchAttribute | The attribute that contains the text that was matched. |
searchMatchText | The text that was matched. |
searchMatchType | An Atom that indicates the kind of match. Possible values are:
exact if the search text matches a complete phrase at the start of a text
in the search index. The features in the result are ordered so exact matches are returned first followed by prefix matches and finally the other matches. |
Note that a match tagged as being exact indicates that the search text matches a complete phrase at the start of a text in the search index, it does not indicate that it matched the entire text in the index. For example, if the search index contains the text "New York City" then searching for "New York" will generate an exact match since the search text matches a complete phrase at the start of "New York City" while searching for "New York C" will generate a prefix match.
Platforms
Windows, Linux, Android