Previous Document Next Document

Object Model Reference : Classes : S : Segment : Properties : Segment.EndingControlPointLength


Segment.EndingControlPointLength

Property EndingControlPointLength As Double

Description

Member of Segment

The EndingControlPointLength property returns or specifies, in document units, the length of the control-point vector ending of a curve.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.