Options.HyphenationZone property (Publisher)
Returns or sets a Variant that represents the maximum amount of space that Microsoft Publisher leaves between the end of the last word in a line and the right margin. Read/write.
Syntax
expression.HyphenationZone
expression A variable that represents an Options object.
Return value
Variant
Example
This example turns on automatic hyphenation and specifies the maximum amount of space between the end of the last word and the right margin equal to one inch (72 points).
Sub SetHyphenationZone()
With Options
.AutoHyphenate = True
.HyphenationZone = 72
End With
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.