Class ExcludingItemVisitor<T>
Item visitor that specifically excludes a predefined area.
Implements
IItemVisitor<T>
Inherited Members
Namespace: NetTopologySuite.Index.Quadtree
Assembly: NetTopologySuite.dll
Syntax
public class ExcludingItemVisitor<T> : IItemVisitor<T> where T : Geometry
Type Parameters
Name | Description |
---|---|
T | The type of the items to visit |
Constructors
| Edit this page View SourceExcludingItemVisitor(Envelope)
Initialize with exclude
Declaration
public ExcludingItemVisitor(Envelope exclude)
Parameters
Type | Name | Description |
---|---|---|
Envelope | exclude |
Properties
| Edit this page View SourceItems
Get a value indicating the gathered items
Declaration
public IList<T> Items { get; }
Property Value
Type | Description |
---|---|
IList<T> |
Methods
| Edit this page View SourceVisitItem(T)
Visits an item in the index.
Declaration
public void VisitItem(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The index item to be visited. |