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


IEdgeFeature.Update Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IE > IEdgeFeature Interface > IEdgeFeature.Update Method
ArcGIS Developer Help

IEdgeFeature.Update Method

Programmatic update of the NetworkFeature.

[Visual Basic .NET]
Public Sub Update ( _
    ByVal callingFeature As INetworkFeature, _
    ByVal oldJunctionLocation As IPoint, _
    ByVal newJunctionLocation As IPoint, _
    ByVal rigidEdges As ISet, _
    ByVal group As ITransformGroup _
)
[C#]
public void Update (
    INetworkFeature callingFeature,
    IPoint oldJunctionLocation,
    IPoint newJunctionLocation,
    ISet rigidEdges,
    ITransformGroup group
);
[C++]
HRESULT Update(
  INetworkFeature* callingFeature,
  IPoint* oldJunctionLocation,
  IPoint* newJunctionLocation,
  ISet* rigidEdges,
  ITransformGroup* group
);
[C++]
Parameters
callingFeature [in]

callingFeature is a parameter of type INetworkFeature* oldJunctionLocation [in]
oldJunctionLocation is a parameter of type IPoint* newJunctionLocation [in]
newJunctionLocation is a parameter of type IPoint* rigidEdges [in]
rigidEdges is a parameter of type ISet* group [in]
group is a parameter of type ITransformGroup*

Product Availability

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

Remarks

The Update method is reserved for internal use during the process of updating the shape and storing the result.  There is no need for clients to directly call this method.

See Also

IEdgeFeature Interface