RangeFilter Constructor | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Create a new RangeFilter where the value of a given field of a Record should
lie within a specified value range.
Namespace:
Telogis.GeoBase.Transactional
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public RangeFilter(
string column,
Object min,
Object max
)
Public Sub New (
column As String,
min As Object,
max As Object
)
Parameters
- column
- Type: SystemString
The name of the column. Case insensitive. - min
- Type: SystemObject
The lower bound of the range. - max
- Type: SystemObject
The upper bound of the range.
Remarks
A RangeFilter will select Records with values that lie on the upper or lower bound of the range.
See Also