Previous Document Next Document

Object Model Reference : Classes : T : Text : Properties : Text.IsArtisticText


Text.IsArtisticText

Property IsArtisticText As Boolean

Description

Member of Text

The IsArtisticText property returns whether a text object is artistic text.

The IsArtisticText property returns a read-only value.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.