Skip to content

DrawingWrappingFeaturesFeatureLayerEventArgs

Namespace: ThinkGeo.Core

This is the event arguments class for the DrawingFeatures event of the FeatureLayer.

public class DrawingWrappingFeaturesFeatureLayerEventArgs : System.EventArgs

Inheritance ObjectEventArgsDrawingWrappingFeaturesFeatureLayerEventArgs

Remarks:

This is the event arguments class for the DrawingFeatures event of the FeatureLayer. You can use the FeaturesToDraw property to add and remove features to draw before the FeatureLayer actually draws them.

Properties

FeaturesToDraw

This property gets the collection of InternalFeatures that will draw.

public Collection<Feature> FeaturesToDraw { get; }

Property Value

Collection<Feature>

Remarks:

This property gets the collection of InternalFeatures that will draw. You can add, remove or edit items in this collection and they will be considered for drawing in the FeatureLayer.

Constructors

DrawingWrappingFeaturesFeatureLayerEventArgs()

This is a constructor for the class.

public DrawingWrappingFeaturesFeatureLayerEventArgs()

Remarks:

None

DrawingWrappingFeaturesFeatureLayerEventArgs(Collection<Feature>)

This is a constructor for the class.

public DrawingWrappingFeaturesFeatureLayerEventArgs(Collection<Feature> featuresToDraw)

Parameters

featuresToDraw Collection<Feature>
This parameter represents the faatures that will be drawn.

Remarks:

None