ArcGIS Pro 2.6 API Reference Guide
StartPoint Property (CubicBezierBuilder)
Example 

ArcGIS.Core.Geometry Namespace > CubicBezierBuilder Class : StartPoint Property
Gets or sets the start point of the CubicBezier segment.
Syntax
public MapPoint StartPoint {get; set;}
Public Property StartPoint As MapPoint

Property Value

MapPoint representing the start point.
Exceptions
ExceptionDescription
This method or property must be called within the lambda passed to QueuedTask.Run.
Setting the start point with a null object.
Example
// Builder constructors need to run on the MCT.
ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask.Run(() =>
{
  // retrieve the bezier curve's control points
  using (CubicBezierBuilder cbb = new CubicBezierBuilder(bezierSegment))
  {
    MapPoint startPt = cbb.StartPoint;
    Coordinate2D ctrlPt1 = cbb.ControlPoint1;
    Coordinate2D ctrlPt2 = cbb.ControlPoint2;
    MapPoint endPt = cbb.EndPoint;

    // or use the QueryCoords method
    cbb.QueryCoords(out startPt, out ctrlPt1, out ctrlPt2, out endPt);
  }
});
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

CubicBezierBuilder Class
CubicBezierBuilder Members