FeaturesSequenceWhereSmallerT Method |
Selects features with attribute value smaller than the provided value.
Namespace:
Aspose.Gis
Assembly:
Aspose.GIS (in Aspose.GIS.dll) Version: 20.3.0.0 (20.03)
Syntaxpublic virtual FeaturesSequence WhereSmaller<T>(
string attributeName,
T value
)
Public Overridable Function WhereSmaller(Of T) (
attributeName As String,
value As T
) As FeaturesSequence
public:
generic<typename T>
virtual FeaturesSequence^ WhereSmaller(
String^ attributeName,
T value
)
abstract WhereSmaller :
attributeName : string *
value : 'T -> FeaturesSequence
override WhereSmaller :
attributeName : string *
value : 'T -> FeaturesSequence Parameters
- attributeName
- Type: SystemString
Attribute to filter by. - value
- Type: T
Value to compare against.
Type Parameters
- T
- Type of the value to compare against.
Return Value
Type:
FeaturesSequenceFeatures with attribute value smaller than the provided value.
Exceptions| Exception | Condition |
|---|
| ArgumentException | No attribute with such name exists in this features sequence. |
See Also