The Uppercase property returns or specifies the case of the characters in a text object. The Uppercase property returns a value of cdrFontCase.
Examples:
The following VBA example creates a text object and applies "small caps" to it.
Sub Test()
Dim s As Shape
Set s = ActiveLayer.CreateArtisticText(4, 5, "Small Caps Text")
s.Text.FontProperties.Uppercase = cdrSmallCapsFontCase
End Sub