QuantileCustomRenderSettings implements the ICustomRenderSettings interface and is used to provide dynamic render settings.

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

Syntax

Visual Basic
Public Class QuantileCustomRenderSettings _
	Implements ICustomRenderSettings
C#
public class QuantileCustomRenderSettings : ICustomRenderSettings
Visual C++
public ref class QuantileCustomRenderSettings : ICustomRenderSettings
JavaScript
EGIS.Web.Controls.QuantileCustomRenderSettings = function();

Type.createClass(
	'EGIS.Web.Controls.QuantileCustomRenderSettings',
	null,
	EGIS.ShapeFileLib.ICustomRenderSettings);

Remarks

QuantileCustomRenderSettings is used to render individual shape colors in a shapefile layer according to a specified range of values. For example, the color of the rendered shape could be green if field1 is between 0 and 100, yellow if field 1 is between 100 and 200, or red if it is greater than 200.

The class also provides the ability to join an external DataTable on a shapefile's DBF data file

Inheritance Hierarchy

System..::..Object
  EGIS.Web.Controls..::..QuantileCustomRenderSettings

See Also