Skip to content

DrawnAdornmentLayerEventArgs

Namespace: ThinkGeo.Core

This is the event arguments class for the AdornmentLayerDrawn event. It is raised after the AdornmentLayer is drawn.

public class DrawnAdornmentLayerEventArgs : System.EventArgs

Inheritance ObjectEventArgsDrawnAdornmentLayerEventArgs

Remarks:

This is the event arguments class for the AdornmentLayerDrawn event. It is raised after the AdornmentLayer is drawn. This event allows you to manipulate the AdornmentLayer, or draw something with the view after the AdornmentLayer has been drawn.

Properties

AdornmentLayer

This property gets and sets the AdornmentLayer that has been drawn.

public AdornmentLayer AdornmentLayer { get; set; }

Property Value

AdornmentLayer

Remarks:

None

Constructors

DrawnAdornmentLayerEventArgs()

This is the default constructor for the class.

public DrawnAdornmentLayerEventArgs()

Remarks:

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

DrawnAdornmentLayerEventArgs(AdornmentLayer)

This is a constructor for the class.

public DrawnAdornmentLayerEventArgs(AdornmentLayer adornmentLayer)

Parameters

adornmentLayer AdornmentLayer
This parameter is the AdornmentLayer that has been drawn.

Remarks:

None