C# Class Azavea.Open.DAO.Criteria.Spatial.ContainsExpression

The feature is completely contained by the criteria shape.
Inheritance: AbstractSingleShapeExpression
Afficher le fichier Open project: azavea/net-dao

Méthodes publiques

Méthode Description
ContainsExpression ( string property, IGeometry shape ) : GeoAPI.Geometries

The feature completely contains the criteria shape.

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

The feature completely contains 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.

Method Details

ContainsExpression() public méthode

The feature completely contains the criteria shape.
public ContainsExpression ( 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 contain.
Résultat GeoAPI.Geometries

ContainsExpression() public méthode

The feature completely contains the criteria shape.
public ContainsExpression ( 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 contain.
trueOrNot bool True means look for matches (I.E. contains), /// False means look for non-matches (I.E. does not contain)
Résultat GeoAPI.Geometries

Invert() public méthode

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
Résultat IExpression