API Documentation > CorelDRAW > 2025-v26 > ShapeRange > IVGShapeRange
ShapeRange.ConvertToCurves method
Convert all shapes within a range to curves
Syntax:
Sub ConvertToCurves()
Remarks:
The ConvertToCurves method converts each shape in a shape range to a curve.
Examples:
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