Table of Contents

Class DrawnAdornmentLayersEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

This is the event arguments class for the AdornmentLayersDrawn event. It is raised after all of the AdornmentLayers have been drawn.

public class DrawnAdornmentLayersEventArgs : EventArgs
Inheritance
DrawnAdornmentLayersEventArgs
Inherited Members

Remarks

This is the event arguments class for the AdornmentLayersDrawn event. It is raised after all of the AdornmentLayers have been drawn. This event allows you to manipulate the AdornmentLayers, or draw something with the view after all of the AdornmentLayers have been drawn.

Constructors

DrawnAdornmentLayersEventArgs()

This is the default constructor for the class.

public DrawnAdornmentLayersEventArgs()

Remarks

This is the default constructor. If you use this constructor, then you need to set the required properties manually.

DrawnAdornmentLayersEventArgs(IEnumerable<AdornmentLayer>)

This is a constructor for the class.

public DrawnAdornmentLayersEventArgs(IEnumerable<AdornmentLayer> adornmentLayers)

Parameters

adornmentLayers IEnumerable<AdornmentLayer>

This parameter is the AdornmentLayers that have been drawn.

Remarks

None

Properties

AdornmentLayers

This property gets and sets the AdornmentLayers that have been drawn.

public IEnumerable<AdornmentLayer> AdornmentLayers { get; set; }

Property Value

IEnumerable<AdornmentLayer>

Remarks

None