ContainsFilter Constructor (String, LatLon) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Creates a ContainsFilter where the given column of a record should contain the specified
LatLon .
Namespace:
Telogis.GeoBase.Transactional
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public ContainsFilter(
string column,
LatLon point
)
Public Sub New (
column As String,
point As LatLon
)
Parameters
- column
- Type: SystemString
The column name. - point
- Type: Telogis.GeoBaseLatLon
A point to test. See LatLon.
Remarks
This ContainsFilter is useful for finding polygon feature records that encompass
a given
LatLon. To select only records with a column that
matches a given LatLon consider using an
EqualFilter.
See Also