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


ICourse.Type Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Editor > ESRI.ArcGIS.Editor > Interfaces > IC > ICourse Interface > ICourse.Type Property
ArcGIS Developer Help

ICourse.Type Property

The type of course.

[Visual Basic .NET]
Public Property Type As esriCourseType
[C#]
public esriCourseType Type {get; set;}

Product Availability

Available with ArcGIS Desktop.

Remarks

Specifies the type of course that will be added when the AddSegment method is used. The course is defined by the other methods on the ICourse interface. There are four course types;

esriCTDirectionDistance - Add a straight course defined by a direction and a distance.

esriCTAngleDistance - Add a straight course defined by an angle from the previous course and a distance.

esriCTCurve - Add a non-tangent curve course. Any of the following parameters can be used to define the curve; Radius, Arc, Angle or Curve. The TurnDirection specifies that the course will be curving to the left or to the right. The direction of the curve can be specified as a tangent, a radial toward the center point or a chord direction.

esriCTTangentCurve - Add a curve that is tangent to the previous course. Use the same parameters as the esriCTCurve to define the curve.

See Also

ICourse Interface