Moves the spcified ShapeFile "down" in the ShapeFile layers

Namespace:  EGIS.Controls
Assembly:  EGIS.Controls (in EGIS.Controls.dll)

Syntax

Visual Basic
Public Sub MoveShapeFileDown ( _
	shapeFile As ShapeFile _
)
C#
public void MoveShapeFileDown(
	ShapeFile shapeFile
)
Visual C++
public:
void MoveShapeFileDown(
	ShapeFile^ shapeFile
)
JavaScript
function moveShapeFileDown(shapeFile);

Parameters

shapeFile
Type: EGIS.ShapeFileLib..::..ShapeFile

Remarks

When ShapeFiles are added to the map the order that they are added determines the order that they will be rendered. This means that the first ShapeFile layer that is rendered may potentially be covered or patially covered by subsequent shapefiles. By calling the MoveShapeFileUp and MoveShapeFileDown methods you can control the order that the ShapeFile layers will be rendered.

See Also