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
















