This document is archived and information here might be outdated.  Recommended version.


IProportionalSymbolRenderer.MinSymbol Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IP > IProportionalSymbolRenderer Interface > IProportionalSymbolRenderer.MinSymbol Property
ArcGIS Developer Help

IProportionalSymbolRenderer.MinSymbol Property

Symbol used to draw feature with the normalized minimum data value.

[Visual Basic .NET]
Public Property MinSymbol As ISymbol
[C#]
public ISymbol MinSymbol {get; set;}
[C++]
HRESULT get_MinSymbol(
  ISymbol** sym
);
[C++]
HRESULT put_MinSymbol(
  ISymbol* sym
);
[C++]
Parameters
sym [out, retval]

sym is a parameter of type ISymbol** sym [in]
sym is a parameter of type ISymbol*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

This is the symbol used to display the data. This can be a marker or line symbol.

Remarks

MinSymbol is the base symbol used by the proportional symbol renderer, and it can be a line or marker symbol. For each feature in the data, MinSymbol is resized and used to represent the data value in Field. The rules for resizing of MinSymbol are controlled by the settings for ValueUnit and ValueRepresentation.

Marker symbols  can be used with both point and polygon data. In the polygon data case, markers are drawn at the center of each feature. BackgroundSymbol provides access to the fill symbol used to draw the actual shape of the underlying polygon features.

See Also

IProportionalSymbolRenderer Interface