MapWinGIS:AxMap UpdateImage
From MapWindow GIS
UpdateImage
Updates the display of the specified image object.
VB.NET Usage
Sub UpdateImage(LayerHandle As Integer)
Parameters
|
LayerHandle | The handle of the image layer to be updated. |
Sample Code
Private Sub UpdateImage()
Dim hndl As Integer
'Get handle for image layer at position 0 in map
hndl = Map1.get_LayerHandle(0)
'Update the map's display of the specified image
Map1.UpdateImage(hndl)
End Sub
VB 6 Usage
Sub UpdateImage(LayerHandle As Long)
Parameters
|
LayerHandle | The handle of the image layer to be updated. |
Sample Code
Private Sub UpdateImage()
Dim hndl As Long
'Get handle for image layer at position 0 in map
hndl = Map1.LayerHandle(0)
'Update the map's display of the specified image
Map1.UpdateImage (hndl)
End Sub
















