API Documentation > CorelDRAW > 2025-v26 > StructHyphenationSettings > IVGStructHyphenationSettings
StructHyphenationSettings.BreakCapitalized property
Syntax:
Property Get BreakCapitalized() As Boolean
Property Let BreakCapitalized(ByVal Value As Boolean)
Remarks:
The BreakCapitalized property returns or specifies whether to allow automatic hyphenation for capitalized words. Specifying True automatically hyphenates both words with an initial capital and words containing only capital letters. For the BreakCapitalized property to work, the StructHyphenationSettings.UseAutomaticHyphenation property must be set to True.
Examples:
The following VBA example disables the hyphenation of capitalized words for the whole text object.
Sub Test()
ActiveShape.Text.HyphenationSettings.BreakCapitalized = False 
End Sub