Selects or de-selects a shapefile record.

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

Syntax

Visual Basic
Public Sub SelectRecord ( _
	index As Integer, _
	selected As Boolean _
)
C#
public void SelectRecord(
	int index,
	bool selected
)
Visual C++
public:
void SelectRecord(
	int index, 
	bool selected
)
JavaScript
function selectRecord(index, selected);

Parameters

index
Type: System..::..Int32
zero based index of the record to select or de-select
selected
Type: System..::..Boolean

Remarks

Selected shapefiles will be rednered in the color specified by the RenderSettings SelectedFillColor and SelectedOutlineColor

See Also