Interface IWithinOperation
Inherited Members
System.IDisposable.Dispose()
Namespace: Mars.Core.Data.Wrapper
Assembly: Mars.Core.dll
Syntax
public interface IWithinOperation : IOperation, IPlatform, IDisposable
Methods
| Improve this Doc View SourceWithin(Polygon)
Performs a within query returning all data objects whose geometry a completely inside
the given
polygon
.
Declaration
IEnumerable<int> Within(Polygon polygon)
Parameters
Type | Name | Description |
---|---|---|
NetTopologySuite.Geometries.Polygon | polygon | The area described as polygon. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.Int32> |
Returns a collection of data object whose associated
spatial instance is contained inside the passed polygon .
|