Object Model Reference : Classes : T : Text : Methods : Text.ConvertToParagraph |
Sub ConvertToParagraph()
Member of Text
The ConvertToParagraph method changes artistic text to paragraph text.
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 |
Copyright 2013 Corel Corporation. All rights reserved.