returns whether a shapefile record is currently visible

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

Syntax

Visual Basic
Public Function IsRecordVisible ( _
	index As Integer _
) As Boolean
C#
public bool IsRecordVisible(
	int index
)
Visual C++
public:
bool IsRecordVisible(
	int index
)
JavaScript
function isRecordVisible(index);

Parameters

index
Type: System..::..Int32
zero based index of the shapefile record to query

Return Value

Remarks

This method returns the Visible of an individual record. If the entire shapefile is not visible due to RenderSettings this will still return true if the given record is visible

See Also