DrawnTileViewEventArgs¶
Namespace: ThinkGeo.Core
This class represents an event argument for Drawn event in TileView class.
public class DrawnTileViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → DrawnTileViewEventArgs
Properties¶
GeoCanvas¶
This property gets and sets a nativeImage to draw on the tile.
public GeoCanvas GeoCanvas { get; set; }
Property Value¶
GeoCanvas
Cancel¶
This property gets and sets whether this operation needs to be canceled.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
DrawnTileViewEventArgs()¶
This is the constructor of DrawnTileEventArgs class.
public DrawnTileViewEventArgs()
DrawnTileViewEventArgs(GeoCanvas)¶
This is the constructor of DrawnTileEventArgs class.
public DrawnTileViewEventArgs(GeoCanvas geoCanvas)
Parameters¶
geoCanvas
GeoCanvas
This parameter indicates a GeoCanvas for drawing the tile.
DrawnTileViewEventArgs(GeoCanvas, Boolean)¶
This is the constructor of DrawnTileEventArgs class.
public DrawnTileViewEventArgs(GeoCanvas geoCanvas, bool cancel)
Parameters¶
geoCanvas
GeoCanvas
This parameter indicates a GeoCanvas object for drawing the tile.
cancel
Boolean
This parameter indicates whether this operation needs to be canceled.