ArcObjects Library Reference (GeoDatabase)  

IGeometricNetworkErrorDetection.ErrorTable Property

The error table currently associated with the geometric network. This property will return nothing unless it has been set within the running application.

[Visual Basic .NET]
Public Property ErrorTable As ITable
[C#]
public ITable ErrorTable {get; set;}
[C++]
HRESULT get_ErrorTable(
  ITable** ErrorTable
);
[C++]
HRESULT put_ErrorTable(
  ITable* ErrorTable
);
[C++]

Parameters

ErrorTable [out, retval]

  ErrorTable is a parameter of type ITable

ErrorTable [in]

  ErrorTable is a parameter of type ITable

Product Availability

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

Description

The ErrorTable property provides the ability to either return the error table if it exists or associate an error table with the geometric network, after it has been created with the IGeometricNetworkErrorDetection::CreateErrorTable method.  Once the error table is created, it can be associated with, or retrieved from, a geometric network. However, this association will not be persisted—the association is only for the lifetime of the geometric network component instance. The user is responsible for managing this error table.

See Also

IGeometricNetworkErrorDetection Interface