GettingFeaturesForDrawingFeatureSourceEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the FeatureSource.GettingFeaturesForDrawing event.
public class GettingFeaturesForDrawingFeatureSourceEventArgs : System.EventArgs
Inheritance object → EventArgs → GettingFeaturesForDrawingFeatureSourceEventArgs
Properties¶
ReturningColumnNames¶
Gets the column names that should be returned with each feature.
public Collection<string> ReturningColumnNames { get; }
Property Value¶
Filter¶
Gets an optional filter that can be applied before fetching features.
public string Filter { get; }
Property Value¶
WorldExtent¶
Gets or sets the WorldExtent.
public RectangleShape WorldExtent { get; set; }
Property Value¶
Cancel¶
Gets or sets the Cancel.
public bool Cancel { get; set; }
Property Value¶
Features¶
Gets or sets the Features.
public Collection<Feature> Features { get; }
Property Value¶
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