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 Object → EventArgs → DrawnAdornmentLayerEventArgs
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¶
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