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


IDotDensityRenderer.MaintainSize Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > ID > IDotDensityRenderer Interface > IDotDensityRenderer.MaintainSize Property
ArcGIS Developer Help

IDotDensityRenderer.MaintainSize Property

Indicates if dot size is preserved when zooming (the alternative is that density is preserved).

[Visual Basic .NET]
Public Property MaintainSize As Boolean
[C#]
public bool MaintainSize {get; set;}
[C++]
HRESULT get_MaintainSize(
  VARIANT_BOOL flag
);
[C++]
HRESULT put_MaintainSize(
  Boolean* flag
);
[C++]
Parameters
flag [in]

flag is a parameter of type bool flag [out, retval]
flag is a parameter of type bool*

Product Availability

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

Description

Specifies whether or not dot size is held constant when the map scale changes.  If True, then dot size is maintained.

If False, then dot density is held constant and dot size will change. What this means is that when you zoom in on the map, the size of dots will increase to maintain the same density of "inked" space in each polygon. When you zoom out, the size of dots will decrease, again to maintain the same density of "inked" space in each feature between the old and new scale.

See Also

IDotDensityRenderer Interface