ArcObjects Library Reference (GeoDatabase)  

ITopology.MaximumGeneratedErrorCount Property

The maximum number of errors to generate when validating a topology.

[Visual Basic .NET]
Public ReadOnly Property MaximumGeneratedErrorCount As Integer
[C#]
public int MaximumGeneratedErrorCount {get;}
[C++]
HRESULT get_MaximumGeneratedErrorCount(
  long* Count
);
[C++]

Parameters

Count [out, retval]   Count is a parameter of type long

Product Availability

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

Description

Each topology has a maximum number of errors that can be generated on Validate, which can be determined through the MaximumGeneratedErrorCount property.  MaximumGeneratedErrorCount can only be specified when a Topology is created programmatically.  All topologies created with the New Topology wizard in ArcCatalog have a MaximumGeneratedErrorCount of –1, indicating no limit to the number of errors that can be generated.  As with the ClusterTolerance, the MaximumGeneratedErrorCount property cannot be changed, a topology must be deleted and rebuilt in order to specify a new value.

See Also

ITopology Interface