ToolsHyphenationManual

Syntax

ToolsHyphenationManual

Remarks

Hyphenates the document, displaying the Manual Hyphenation dialog box (Manual button, Hyphenation dialog box, Tools menu) each time Word proposes that a word be hyphenated so the user can manually adjust the placement of hyphens. To set hyphenation options before running ToolsHyphenationManual, use the ToolsHyphenation statement and set .AutoHyphenation to 0 (zero).

Example

This example sets a hyphenation zone of 16 points before running ToolsHyphenationManual. An error handler prevents error 102 ("Command failed") from appearing if the user cancels the Manual Hyphenation dialog box.


ToolsHyphenation .AutoHyphenation = 0, .HyphenationZone = 16
On Error Goto trap
ToolsHyphenationManual
trap:
If Err = 102 Then Goto bye Else Error Err
bye:

See Also

ToolsHyphenation