Creates an ICustomRenderSettings object which renders shape colors using quantiles

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

Syntax

Visual Basic
Public Shared Function CreateQuantileCustomRenderSettings ( _
	renderSettings As RenderSettings, _
	quantileColors As Color(), _
	shapeFieldName As String _
) As ICustomRenderSettings
C#
public static ICustomRenderSettings CreateQuantileCustomRenderSettings(
	RenderSettings renderSettings,
	Color[] quantileColors,
	string shapeFieldName
)
Visual C++
public:
static ICustomRenderSettings^ CreateQuantileCustomRenderSettings(
	RenderSettings^ renderSettings, 
	array<Color>^ quantileColors, 
	String^ shapeFieldName
)
JavaScript
EGIS.ShapeFileLib.CustomRenderSettingsUtil.createQuantileCustomRenderSettings = function(renderSettings, quantileColors, shapeFieldName);

Parameters

renderSettings
Type: EGIS.ShapeFileLib..::..RenderSettings
quantileColors
Type: array<System.Drawing..::..Color>[]()[][]
The colors used for each quantile. If 5 colors are used then 5 quantiles will be setup
shapeFieldName
Type: System..::..String
The field name to use for the quantiles

Return Value

Remarks

QuantileCustomRenderSettings are 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.

See Also