DrawnAdornmentLayerEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the MapEngine.AdornmentLayerDrawn event, which fires after an adornment layer finishes drawing.
public class DrawnAdornmentLayerEventArgs : System.EventArgs
Inheritance object → EventArgs → DrawnAdornmentLayerEventArgs
Remarks:
Inspect the DrawnAdornmentLayerEventArgs.AdornmentLayer to perform additional drawing or to react to the result of the adornment render.
Properties¶
AdornmentLayer¶
Gets or sets the adornment layer that has just rendered.
public AdornmentLayer AdornmentLayer { get; set; }
Property Value¶
Constructors¶
DrawnAdornmentLayerEventArgs()¶
Initializes a new instance of the DrawnAdornmentLayerEventArgs class.
public DrawnAdornmentLayerEventArgs()
Remarks:
When this constructor is used, set the DrawnAdornmentLayerEventArgs.AdornmentLayer property manually before raising the event.
DrawnAdornmentLayerEventArgs(AdornmentLayer)¶
Initializes a new instance of the DrawnAdornmentLayerEventArgs class for the specified adornment layer.
public DrawnAdornmentLayerEventArgs(AdornmentLayer adornmentLayer)
Parameters¶
adornmentLayer AdornmentLayer
The adornment layer that has just drawn.