Class DrawingAdornmentLayerEventArgs
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
AdornmentLayerThis 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
Remarks
None