C# Класс Azavea.Open.DAO.Criteria.Spatial.IntersectsExpression

Any part of the feature touches or overlaps the criteria shape.
Наследование: AbstractSingleShapeExpression
Показать файл Открыть проект

Открытые методы

Метод Описание
IntersectsExpression ( string property, IGeometry shape ) : GeoAPI.Geometries

Any part of the feature touches or overlaps the criteria shape.

IntersectsExpression ( string property, IGeometry shape, bool trueOrNot ) : GeoAPI.Geometries

Any part of the feature touches or overlaps the criteria shape.

Invert ( ) : IExpression

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.

Описание методов

IntersectsExpression() публичный Метод

Any part of the feature touches or overlaps the criteria shape.
public IntersectsExpression ( string property, IGeometry shape ) : GeoAPI.Geometries
property string The data class' property/field being compared. /// May not be null.
shape IGeometry This is what you want records' shapes to intersect with.
Результат GeoAPI.Geometries

IntersectsExpression() публичный Метод

Any part of the feature touches or overlaps the criteria shape.
public IntersectsExpression ( string property, IGeometry shape, bool trueOrNot ) : GeoAPI.Geometries
property string The data class' property/field being compared. /// May not be null.
shape IGeometry This is what you want records' shapes to intersect with.
trueOrNot bool True means look for matches (I.E. does intersect), /// False means look for non-matches (I.E. does not intersect)
Результат GeoAPI.Geometries

Invert() публичный Метод

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.
public Invert ( ) : IExpression
Результат IExpression