MapWinGIS:AxMap Redraw
From MapWindow GIS
Redraw
Redraws all layers in the map if the map is not locked.
VB.NET Usage
Sub Redraw()
Parameters
|
None |
Sample Code
Private Sub ReDrawMap()
'Check if the map is locked
If Not Map1.IsLocked Then
'If the map is unlocked, then redraw all of the map's layers
Map1.Redraw()
End If
End Sub
VB 6 Usage
Sub Redraw()
Parameters
|
None |
Sample Code
Private Sub ReDrawMap()
'Check if the map is locked
If Not Map1.IsLocked Then
'If the map is unlocked, then redraw all of the map's layers
Map1.Redraw()
End If
End Sub
















