API Documentation > CorelDRAW > 2025-v26 > StructFontProperties > IVGStructFontProperties
StructFontProperties.Position property
Syntax:
Property Get Position() As cdrFontPosition
Property Let Position(ByVal Value As cdrFontPosition)
Remarks:
The Position property returns or specifies the position of the characters in a text object. The Position property returns a value of cdrFontPosition.
Examples:
The following VBA example creates a text object with a subscript character.
Sub Test()
Dim s As Shape
Set s = ActiveLayer.CreateArtisticText(4, 5, "H2O")
s.Text.FontPropertiesInRange(2, 1).Position = cdrSubscriptFontPosition 
End Sub