API Documentation > CorelDRAW > 2025-v26 > StructAlignProperties > IVGStructAlignProperties
StructAlignProperties.MaxCharacterSpacing property
Syntax:
Property Get MaxCharacterSpacing() As Single
Property Let MaxCharacterSpacing(ByVal Value As Single)
Remarks:
The MaxCharacterSpacing property returns or specifies the maximum amount of space that can exist between characters. This value represents a percentage of the Space character (that is, the character inserted when you press the Spacebar). The maximum percentage value is 2000, and the minimum percentage value is -100.
Examples:
The following VBA example specifies the adjustment range for character and word spacing in the selected text object.
Sub Test()
With ActiveShape.Text.AlignProperties
  .MaxCharacterSpacing = 200
  .MinWordSpacing = 50
  .MaxWordSpacing = 150
End With 
End Sub