Skip to content

DrawnAttributionOverlayEventArgs

Namespace: ThinkGeo.UI.Wpf

Provides data for the overlay's DrawnAttribution event after attribution content renders.

public class DrawnAttributionOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsDrawnAttributionOverlayEventArgs

Properties

Canvas

Gets or sets the canvas that completed the attribution rendering pass.

public GeoCanvas Canvas { get; set; }

Property Value

GeoCanvas

Exceptions

ArgumentNullException
Thrown when the value is null.

Attribution

Gets or sets the attribution text that was produced during drawing.

public string Attribution { get; set; }

Property Value

String

Constructors

DrawnAttributionOverlayEventArgs()

Initializes a new instance of the DrawnAttributionOverlayEventArgs class.

public DrawnAttributionOverlayEventArgs()

DrawnAttributionOverlayEventArgs(GeoCanvas, String)

Initializes a new instance of the DrawnAttributionOverlayEventArgs class with the rendered result.

public DrawnAttributionOverlayEventArgs(GeoCanvas canvas, string attribution)

Parameters

canvas GeoCanvas
The canvas that completed the attribution drawing.

attribution String
The attribution text that was rendered onto the canvas.