Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns a WordHyphenSettings object that can be used to get and set the hyphenation settings for this Document.

{signature}
{example}{code:csharp|title=C#}

          WordHyphenSettings oWordHyphenSettings = oDocument.HyphenSettings;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim oWordHyphenSettings As WordHyphenSettings = oDocument.HyphenSettings
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [WordHyphenSettings|WordHyphenSettings] object that can be used to get and set the hyphenation settings for this [Document|Document].{excerpt}
{signature:C#}
 public WordHyphenSettings HyphenSettings{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property HyphenSettings() As WordHyphenSettings
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle