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

The feature is completely contained by the criteria shape.
Наследование: AbstractSingleShapeExpression
Показать файл Открыть проект

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

Метод Описание
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.

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

The feature is completely within the criteria shape.

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

The feature is completely within the criteria shape.

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

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

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

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.
Результат GeoAPI.Geometries

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

The feature is completely within the criteria shape.
public WithinExpression ( 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 be within.
trueOrNot bool True means look for matches (I.E. is within), /// False means look for non-matches (I.E. is not within)
Результат GeoAPI.Geometries