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


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

IDotDensityFillSymbol2.RandomSeed Property

Defines how the random generator is initialized to draw dots randomly.

[Visual Basic .NET]
Public Property RandomSeed As Object
[C#]
public object RandomSeed {get; set;}
[C++]
HRESULT get_RandomSeed(
  Variant* Seed
);
[C++]
HRESULT put_RandomSeed(
  VARIANT Seed
);
[C++]
Parameters
Seed [out, retval]

Seed is a parameter of type VARIANT* Seed [in]
Seed is a parameter of type VARIANT

Product Availability

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

Remarks

The random seed for dot generation a 32-bit unsigned integer value.

Specifies the random seed used for generation of placement position.  If FixedPlacement is True, then the dots will be fixed in place on successive redraws based on the random seed, which will not be modified. If FixedPlacement is False, then dots will be placed randomly as the random seed will be updated each draw.

See Also

IDotDensityFillSymbol2 Interface