API Documentation > CorelDRAW > 2025-v26 > StructFontProperties > IVGStructFontProperties
StructFontProperties.Uppercase property
Syntax:
Property Get Uppercase() As cdrFontCase
Property Let Uppercase(ByVal Value As cdrFontCase)
Remarks:
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