| Name | Type | Description |
|---|---|---|
| Offset |
Double
|
Specifies the offset, in document units, of the point on the segment's subpath. 5. |
| OffsetType | Specifies the offset type of the point. |
Sub Test() Dim c As Double Dim seg As Segment Set seg = ActiveShape.Curve.Segments(1) c = seg.GetCurveSpeedAt(0.5, cdrRelativeSegmentOffset) If Abs(c) < 0.01 Then MsgBox "Curvature is steady: " & c Else If c > 0 Then MsgBox "Curvature is increasing: " & c Else MsgBox "Curvature is decreasing: " & c End If End If End Sub