Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Sets or returns a boolean that represents whether or not Word is allowed to hyphenate words that are capitalized in this document.

Signature
C#
C#
 public boolean CapitalHyphenation{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property CapitalHyphenation() As Boolean
{signature}
{remarks}This option is set to true by default.

MS Word equivalent: Tools menu > Language > 
Remarks

This option is set to true by default.

MS Word equivalent: Tools menu > Language > Hyphenation...

>

Hyphenate

words

in

CAPS {remarks} {example}{code:csharp|title=C#}

CAPS

Example
Code Block
csharp
csharp
titleC#


          //--- Return CapitalHyphenation
          bool capitalHyphenation = hyphenSettings.CapitalHyphenation;

          //--- Set CapitalHyphenation
          hyphenSettings.CapitalHyphenation = false;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          '--- Return CapitalHyphenation
          Dim capitalHyphenation As Boolean = hyphenSettings.CapitalHyphenation

          '--- Set CapitalHyphenation
          hyphenSettings.CapitalHyphenation = False
        
{code} {example}