Object Model Reference : Classes : S : ShapeRange : Methods : ShapeRange.ConvertToCurves |
Sub ConvertToCurves()
Member of ShapeRange
The ConvertToCurves method converts each shape in a shape range to a curve.
The following VBA example converts all artistic-text objects to curves.
Sub Test() |
Dim sr As ShapeRange |
Set sr = ActivePage.FindShapes(Type:=cdrTextShape) |
sr.ConvertToCurves |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.