C# Class FdoToolbox.Core.Feature.FdoGeometry

IGeometry decorator object.
Inheritance: IFdoGeometry
Mostrar archivo Open project: jumpinjackie/fdotoolbox Class Usage Examples

Public Methods

Method Description
Contains ( IEnvelope env ) : bool

Determines whether this instance contains the specified envelope

Contains ( IFdoGeometry geom ) : bool

Determines whether this instance contains the specified geometry

Contains ( double x, double y ) : bool

Determines whether this instance contains the specified point

CoveredBy ( IFdoGeometry geom ) : bool

Determines whether this instance is covered by the specified geometry

Crosses ( IFdoGeometry geom ) : bool

Determines whether this instance crosses the specified geometry

Disjoint ( IFdoGeometry geom ) : bool

Determines whether this instance is disjoint with the specified geometry

Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

EnvelopeIntersects ( IFdoGeometry geom ) : bool

Determines whether this instance's envelope intersects the specified geometry

Equals ( IFdoGeometry geom ) : bool

Determines whether this instance is equal to the specified geometry

FdoGeometry ( IGeometry geom ) : System

Initializes a new instance of the FdoGeometry class.

Inside ( IFdoGeometry geom ) : bool

Determines whether this instance is inside the specified geometry

Intersects ( IFdoGeometry geom ) : bool

Determines whether this instance intersects the specified geometry

Overlaps ( IFdoGeometry geom ) : bool

Determines whether this instance overlaps the specified geometry

ToString ( ) : string

Returns a T:System.String that represents the current T:System.Object.

Touches ( IFdoGeometry geom ) : bool

Determines whether this instance touches the specified geometry

Within ( IFdoGeometry geom ) : bool

Determines whether this instance is within the specified geometry

Method Details

Contains() public method

Determines whether this instance contains the specified envelope
public Contains ( IEnvelope env ) : bool
env IEnvelope The envelope
return bool

Contains() public method

Determines whether this instance contains the specified geometry
public Contains ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

Contains() public method

Determines whether this instance contains the specified point
public Contains ( double x, double y ) : bool
x double The x coordinate.
y double The y coordinate.
return bool

CoveredBy() public method

Determines whether this instance is covered by the specified geometry
public CoveredBy ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

Crosses() public method

Determines whether this instance crosses the specified geometry
public Crosses ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

Disjoint() public method

Determines whether this instance is disjoint with the specified geometry
public Disjoint ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void

EnvelopeIntersects() public method

Determines whether this instance's envelope intersects the specified geometry
public EnvelopeIntersects ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

Equals() public method

Determines whether this instance is equal to the specified geometry
public Equals ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

FdoGeometry() public method

Initializes a new instance of the FdoGeometry class.
public FdoGeometry ( IGeometry geom ) : System
geom IGeometry The geom.
return System

Inside() public method

Determines whether this instance is inside the specified geometry
public Inside ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

Intersects() public method

Determines whether this instance intersects the specified geometry
public Intersects ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

Overlaps() public method

Determines whether this instance overlaps the specified geometry
public Overlaps ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

ToString() public method

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
return string

Touches() public method

Determines whether this instance touches the specified geometry
public Touches ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool

Within() public method

Determines whether this instance is within the specified geometry
public Within ( IFdoGeometry geom ) : bool
geom IFdoGeometry The geometry to test against
return bool