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


IDotDensityFillSymbol.DotCount Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > ID > IDotDensityFillSymbol Interface > IDotDensityFillSymbol.DotCount Property
ArcGIS Developer Help

IDotDensityFillSymbol.DotCount Property

The number of dots used to fill.

[Visual Basic .NET]
Public Function get_DotCount ( _
    ByVal index As Integer _
) As Integer
[Visual Basic .NET]
Public Sub set_DotCount ( _
    ByVal index As Integer, _
    ByVal DotCount As Integer _
)
[C#]
public int get_DotCount (
    int index
);
[C#]
public void set_DotCount (
    int index,
    int DotCount
);
[C++]
HRESULT get_DotCount(
  long index,
  System.Int32* DotCount
);
[C++]
HRESULT put_DotCount(
  long index,
  long DotCount
);
[C++]
Parameters
index [in]

index is a parameter of type long DotCount [out, retval]
DotCount is a parameter of type long* index [in]
index is a parameter of type long DotCount [in]
DotCount is a parameter of type long

Product Availability

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

Description

Literally, the number of dots used for filling.  Typically, this value is calculated by the DotDensityRenderer based on IDotDensityRenderer.DotValue and the data value for the feature being symbolized.

See Also

IDotDensityFillSymbol Interface