MapWinGIS:AxMap MoveLayerTop
From MapWindow GIS
MoveLayerTop
Moves the specified layer to the top of all other layers.
VB.NET Usage
Function MoveLayerTop(InitialPosition As Integer) As Boolean
Parameters
|
InitialPosition | The position of the layer to be moved. |
| ReturnValue | Boolean value representing success when true, failure when false. |
Sample Code
Private Sub MoveLayerTop()
Dim hnd As Integer
'Get handle of layer 0
hnd = Map1.get_LayerHandle(0)
'Move layer above all other layers
Map1.MoveLayerTop(Map1.get_LayerPosition(hnd))
End Sub
VB 6 Usage
Function MoveLayerTop(InitialPosition As Long) As Boolean
Parameters
|
InitialPosition | The position of the layer to be moved. |
| ReturnValue | Boolean value representing success when true, failure when false. |
Sample Code
Private Sub MoveLayerTop()
Dim hnd As Long
Dim success As Boolean
'Get handle of layer 0
hnd = Map1.LayerHandle(0)
'Move layer above all other layers
success = Map1.MoveLayerTop(Map1.LayerPosition(hnd))
End Sub
















