Azavea.Open.DAO.Criteria.Spatial.IntersectsExpression.IntersectsExpression C# (CSharp) Method

IntersectsExpression() public method

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.
return GeoAPI.Geometries
        public IntersectsExpression(string property, IGeometry shape)
            : this(property, shape, true)
        {
        }

Same methods

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