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


ISegmentID.GetIDs Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IS > ISegmentID Interface > ISegmentID.GetIDs Method
ArcGIS Developer Help

ISegmentID.GetIDs Method

Get the IDs on the segment's endpoints.

[Visual Basic .NET]
Public Sub GetIDs ( _
    ByRef fromID As Integer, _
    ByRef toID As Integer _
)
[C#]
public void GetIDs (
    ref int fromID,
    ref int toID
);
[C++]
HRESULT GetIDs(
  System.Int32* fromID,
  System.Int32* toID
);
[C++]
Parameters
fromID [out]

fromID is a parameter of type long* toID [out]
toID is a parameter of type long*

Product Availability

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

Description

Returns the PointID attributes held by the From and To point of the segment.

See Also

ISegmentID Interface