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
















