MapUpdateDelegate Delegate |
Definition of a delegate handling map updates.
Namespace:
Ptv.XServer.Controls.Map.TileProviders
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public delegate void MapUpdateDelegate(
Map map,
Size size
)
Public Delegate Sub MapUpdateDelegate (
map As Map,
size As Size
)
public delegate void MapUpdateDelegate(
Map^ map,
Size size
)
type MapUpdateDelegate =
delegate of
map : Map *
size : Size -> unit
Parameters
- map
- Type: xserverMap
Map returned by xMap Server. - size
- Type: System.WindowsSize
Size of the requested image.
Remarks Delegate is always called twice; with map set to null, if an update begins
and with the resulting Map object, when an update ends.
See Also