Object Model Reference : Classes : T : Text : Properties : Text.IsArtisticText |
Property IsArtisticText As Boolean
Member of Text
The IsArtisticText property returns whether a text object is artistic text.
The IsArtisticText property returns a read-only value.
The following VBA example displays a message box if the text object is artistic text.
Sub Test() |
Dim s As Shape |
Dim d As Document |
Dim t As Text |
Set d = CreateDocument |
Set s = d.ActiveLayer.CreateArtisticText(3, 3, "This is a test") |
Set t = s.Text |
If t.IsArtisticText Then |
MsgBox "Artistic Text" |
End If |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.