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


ITopologyRule.ErrorShapeTypes Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITopologyRule Interface > ITopologyRule.ErrorShapeTypes Method
ArcGIS Developer Help

ITopologyRule.ErrorShapeTypes Method

Indicates the shape types of errors for the topology rule.

[Visual Basic .NET]
Public Sub ErrorShapeTypes ( _
    ByRef multipoints As Boolean, _
    ByRef polylines As Boolean, _
    ByRef polygons As Boolean _
)
[C#]
public void ErrorShapeTypes (
    ref bool multipoints,
    ref bool polylines,
    ref bool polygons
);
[C++]
HRESULT ErrorShapeTypes(
  Boolean* multipoints,
  Boolean* polylines,
  Boolean* polygons
);
[C++]
Parameters
multipoints [out]

multipoints is a parameter of type bool* polylines [out]
polylines is a parameter of type bool* polygons [out]
polygons is a parameter of type bool*

Product Availability

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

Remarks

The ErrorShapeTypes method returns the supported error geometries for the specific topology rule.  Topology rules do not support multipoints, this parameter equates to points.  Every topology rule supports the creation of point topology errors.

See Also

ITopologyRule Interface