Both Arcs and Curves have StartPoint and EndPoint properties (in VBA), that you can access similar to:
Dim oArcElement As ArcElement Set oArcElement = Element With oArcElement dPrimaryRadius = .PrimaryRadius dSecondaryRadius = .SecondaryRadius dSweepAngle = .sweepAngle dStartAngle = .StartAngle rotationMatrix = .Rotation CenterPnt = .CenterPoint StartPnt = .StartPoint EndPnt = .EndPoint End With
HTH,
Bob