ArcObjects Library Reference (GeoDatabase)  

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(
  VARIANT_BOOL* multipoints,
  VARIANT_BOOL* polylines,
  VARIANT_BOOL* polygons
);
[C++]

Parameters

multipoints [out]   multipoints is a parameter of type VARIANT_BOOL polylines [out]   polylines is a parameter of type VARIANT_BOOL polygons [out]   polygons is a parameter of type VARIANT_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