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

WithinExpression() public method

The feature is completely within the criteria shape.
public WithinExpression ( 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 be within.
return GeoAPI.Geometries
        public WithinExpression(string property, IGeometry shape)
            : this(property, shape, true)
        {
        }

Same methods

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