DrawingOverlayEventArgs¶
Namespace: ThinkGeo.UI.Maui
Provides event data for overlay drawing operations.
public class DrawingOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → DrawingOverlayEventArgs
Properties¶
Cancel¶
Gets or sets a value that determines whether you want to cancel the overlay drawing operation.
public bool Cancel { get; set; }
Property Value¶
Boolean
True to cancel the drawing operation; otherwise, false.
OverlayRefreshType¶
Gets or sets the refresh behavior that should be applied after the drawing cycle.
public OverlayRefreshType OverlayRefreshType { get; set; }
Property Value¶
Constructors¶
DrawingOverlayEventArgs(Boolean)¶
Provides event data for overlay drawing operations.
public DrawingOverlayEventArgs(bool cancel)
Parameters¶
cancel Boolean
True to cancel the current drawing cycle; otherwise, false.
DrawingOverlayEventArgs()¶
Initializes a new instance of the DrawingOverlayEventArgs class.
public DrawingOverlayEventArgs()