Skip to content

GettingFeaturesForDrawingFeatureSourceEventArgs

Namespace: ThinkGeo.Core

Provides data for the FeatureSource.GettingFeaturesForDrawing event.

public class GettingFeaturesForDrawingFeatureSourceEventArgs : System.EventArgs

Inheritance objectEventArgsGettingFeaturesForDrawingFeatureSourceEventArgs

Properties

ReturningColumnNames

Gets the column names that should be returned with each feature.

public Collection<string> ReturningColumnNames { get; }

Property Value

Collection<string>

Filter

Gets an optional filter that can be applied before fetching features.

public string Filter { get; }

Property Value

string

WorldExtent

Gets or sets the WorldExtent.

public RectangleShape WorldExtent { get; set; }

Property Value

RectangleShape

Cancel

Gets or sets the Cancel.

public bool Cancel { get; set; }

Property Value

bool

Features

Gets or sets the Features.

public Collection<Feature> Features { get; }

Property Value

Collection<Feature>

Constructors

GettingFeaturesForDrawingFeatureSourceEventArgs()

Initializes a new instance of the GettingFeaturesForDrawingFeatureSourceEventArgs class.

public GettingFeaturesForDrawingFeatureSourceEventArgs()

GettingFeaturesForDrawingFeatureSourceEventArgs(RectangleShape, IEnumerable<string>)

Initializes a new instance of the GettingFeaturesForDrawingFeatureSourceEventArgs class.

public GettingFeaturesForDrawingFeatureSourceEventArgs(RectangleShape worldExtent, IEnumerable<string> returningColumnNames)

Parameters

worldExtent RectangleShape

returningColumnNames IEnumerable<string>

GettingFeaturesForDrawingFeatureSourceEventArgs(RectangleShape, IEnumerable<string>, string)

Initializes a new instance of the GettingFeaturesForDrawingFeatureSourceEventArgs class.

public GettingFeaturesForDrawingFeatureSourceEventArgs(RectangleShape worldExtent, IEnumerable<string> returningColumnNames, string filter)

Parameters

worldExtent RectangleShape

returningColumnNames IEnumerable<string>

filter string