delegate to return whether a feature should be output at a given zoom level and tile coordinates

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

Syntax

Visual Basic
Public Delegate Function OutputTileFeatureDelegate ( _
	shapeFile As ShapeFile, _
	recordIndex As Integer, _
	tileZ As Integer, _
	tileX As Integer, _
	tileY As Integer _
) As Boolean
C#
public delegate bool OutputTileFeatureDelegate(
	ShapeFile shapeFile,
	int recordIndex,
	int tileZ,
	int tileX,
	int tileY
)
Visual C++
public delegate bool OutputTileFeatureDelegate(
	ShapeFile^ shapeFile, 
	int recordIndex, 
	int tileZ, 
	int tileX, 
	int tileY
)
JavaScript
function(shapeFile, recordIndex, tileZ, tileX, tileY);

Parameters

shapeFile
Type: EGIS.ShapeFileLib..::..ShapeFile
recordIndex
Type: System..::..Int32
tileZ
Type: System..::..Int32
tileX
Type: System..::..Int32
tileY
Type: System..::..Int32

Return Value

See Also