ArcObjects Library Reference (Geometry)  

ILine3.SplitAtDistance3D Method

Split segment at specified distance.

[Visual Basic .NET]
Public Sub SplitAtDistance3D ( _
    ByVal distances As Double, _
    ByVal asRatio As Boolean, _
    ByRef fromSegment As ISegment, _
    ByRef toSegment As ISegment _
)
[C#]
public void SplitAtDistance3D (
    double distances,
    bool asRatio,
    ref ISegment fromSegment,
    ref ISegment toSegment
);
[C++]
HRESULT SplitAtDistance3D(
  double distances,
  VARIANT_BOOL asRatio,
  ISegment** fromSegment,
  ISegment** toSegment
);
[C++]

Parameters

distances   distances is a parameter of type double asRatio   asRatio is a parameter of type VARIANT_BOOL 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

ILine3 Interface