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

Base class for expressions that have a single geometry criteria.
Inheritance: AbstractSinglePropertyExpression
Datei anzeigen Open project: azavea/net-dao

Public Properties

Property Type Description
Shape IGeometry

Public Methods

Method Description
ToString ( ) : string

Protected Methods

Method Description
AbstractSingleShapeExpression ( string property, IGeometry shape, bool trueOrNot ) : System

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

Method Details

AbstractSingleShapeExpression() protected method

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)
return System

ToString() public method

public ToString ( ) : string
return string

Property Details

Shape public_oe property

This is what you want records' shapes to relate to.
public IGeometry Shape
return IGeometry