Table of Contents

Class DrawingAdornmentLayerEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

This is the event arguments class for the AdornmentLayerDrawing event. It is raised before the AdornmentLayer is drawn.

public class DrawingAdornmentLayerEventArgs : EventArgs
Inheritance
DrawingAdornmentLayerEventArgs
Inherited Members

Remarks

This is the event arguments class for the AdornmentLayerDrawing event. It is raised before the AdornmentLayer is drawn. This event allows you to manipulate the AdornmentLayer, or draw something with the view before the AdornmentLayer draws.

Constructors

DrawingAdornmentLayerEventArgs()

This is the default constructor for the class.

public DrawingAdornmentLayerEventArgs()

Remarks

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

DrawingAdornmentLayerEventArgs(AdornmentLayer)

This is a constructor for the class.

public DrawingAdornmentLayerEventArgs(AdornmentLayer adornmentLayer)

Parameters

adornmentLayer AdornmentLayer

This parameter is the AdornmentLayer that will be drawn.

Remarks

None

Properties

AdornmentLayer

This property gets and sets the AdornmentLayer that will be drawn.

public AdornmentLayer AdornmentLayer { get; set; }

Property Value

AdornmentLayer

Remarks

None