Class DrawnAdornmentLayerEventArgs
This is the event arguments class for the AdornmentLayerDrawn event. It is raised after the AdornmentLayer is drawn.
public class DrawnAdornmentLayerEventArgs : EventArgs
- Inheritance
-
DrawnAdornmentLayerEventArgs
- Inherited Members
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.
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
AdornmentLayerThis parameter is the AdornmentLayer that has been drawn.
Remarks
None
Properties
AdornmentLayer
This property gets and sets the AdornmentLayer that has been drawn.
public AdornmentLayer AdornmentLayer { get; set; }
Property Value
Remarks
None