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


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

ISegment.SplitAtVertexAttribute Method

Splits the segment in two segments at the location corresponding to the attribute value.

[Visual Basic .NET]
Public Sub SplitAtVertexAttribute ( _
    ByVal attributeType As esriGeometryAttributes, _
    ByVal attributeValue As Double, _
    ByRef fromSegment As ISegment, _
    ByRef toSegment As ISegment _
)
[C#]
public void SplitAtVertexAttribute (
    esriGeometryAttributes attributeType,
    double attributeValue,
    ref ISegment fromSegment,
    ref ISegment toSegment
);
[C++]
HRESULT SplitAtVertexAttribute(
  esriGeometryAttributes attributeType,
  double attributeValue,
  ISegment** fromSegment,
  ISegment** toSegment
);
[C++]
Parameters
attributeType 

attributeType is a parameter of type esriGeometryAttributes attributeValue
attributeValue is a parameter of type double fromSegment [out]
fromSegment is a parameter of type ISegment** toSegment [out]
toSegment is a parameter of type ISegment**

Product Availability

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

See Also

ISegment Interface