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

Base class for expressions that have a single geometry criteria.
Наследование: AbstractSinglePropertyExpression
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Shape IGeometry

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

Метод Описание
ToString ( ) : string

Защищенные методы

Метод Описание
AbstractSingleShapeExpression ( string property, IGeometry shape, bool trueOrNot ) : System

Create an expression on a single property relating to a single shape.

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

AbstractSingleShapeExpression() защищенный Метод

Create an expression on a single property relating to a single shape.
protected AbstractSingleShapeExpression ( string property, IGeometry shape, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
shape IGeometry This is what you want records' shapes to relate to.
trueOrNot bool True means look for matches (I.E. does relate), /// False means look for non-matches (I.E. does not relate)
Результат System

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

public ToString ( ) : string
Результат string

Описание свойств

Shape публичное свойство

This is what you want records' shapes to relate to.
public IGeometry Shape
Результат IGeometry