Table of Contents

Class DrawingWrappingFeaturesFeatureLayerEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

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

public class DrawingWrappingFeaturesFeatureLayerEventArgs : EventArgs
Inheritance
DrawingWrappingFeaturesFeatureLayerEventArgs
Inherited Members

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.

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

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.