DrawingAdornmentLayersEventArgs¶
Namespace: ThinkGeo.Core
This is the event arguments class for the AdornmentLayersDrawing event. It is raised before any of the AdornmentLayers are drawn.
public class DrawingAdornmentLayersEventArgs : System.EventArgs
Inheritance Object → EventArgs → DrawingAdornmentLayersEventArgs
Remarks:
This is the event arguments class for the AdornmentLayersDrawing event. It is raised before any of the AdornmentLayers are drawn. This event allows you to manipulate the AdornmentLayers, or draw something with the view before any of the AdornmentLayers are drawn.
Properties¶
AdornmentLayers¶
This property gets and sets the AdornmentLayers that will be drawn.
public IEnumerable<AdornmentLayer> AdornmentLayers { get; set; }
Property Value¶
Remarks:
None
Constructors¶
DrawingAdornmentLayersEventArgs()¶
This is the default constructor for the class.
public DrawingAdornmentLayersEventArgs()
Remarks:
This is the default constructor. If you use this constructor, then you need to set the required properties manually.
DrawingAdornmentLayersEventArgs(IEnumerable<AdornmentLayer>)¶
This is a constructor for the class.
public DrawingAdornmentLayersEventArgs(IEnumerable<AdornmentLayer> adornmentLayers)
Parameters¶
adornmentLayers
IEnumerable<AdornmentLayer>
This parameter is the AdornmentLayers that will be drawn.
Remarks:
None