Object Model Reference : Classes : S : Segment : Properties : Segment.StartingControlPointLength |
Property StartingControlPointLength As Double
Member of Segment
The StartingControlPointLength property returns or specifies the length, in document units, of the control-point vector beginning of a curve.
The following VBA example sets the starting and ending control-point length for the first segment in the active shape.
Sub App() |
With ActiveShape.Curve.Segments(1) |
.StartingControlPointLength = 5 |
.EndingControlPointLength = 5 |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.