Skip to content

DrawingAdornmentLayerEventArgs

Namespace: ThinkGeo.Core

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

public class DrawingAdornmentLayerEventArgs : System.EventArgs

Inheritance ObjectEventArgsDrawingAdornmentLayerEventArgs

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.

Properties

AdornmentLayer

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

public AdornmentLayer AdornmentLayer { get; set; }

Property Value

AdornmentLayer

Remarks:

None

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