API Documentation > CorelDRAW > 2025-v26 > Text > IVGText
Text.ConvertToParagraph method
Converts artistic text to paragraph
Syntax:
Sub ConvertToParagraph()
Remarks:
The ConvertToParagraph method changes artistic text to paragraph text.
Examples:
The following VBA example converts the artistic text in the active shape to paragraph text and then makes the paragraph text HTML-compatible.
Sub Test()
With ActiveShape.Text
  .ConvertToParagraph
  .MakeHTMLCompatible
End With 
End Sub