Page tree

Versions Compared

Key

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

Excerpt

Sets or returns a Font.Hyphenation object that represents the hyphenation rule for a character run.

 None

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

          //--- Return HyphenationRule
          Font.Hyphenation oHyphenationRule = oFont.HyphenationRule;

          //--- Set HyphenationRule
          oFont.HyphenationRule = Font.Hyphenation.ChangeAfter;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return HyphenationRule
          Dim oHyphenationRule As Font.Hyphenation = oFont.HyphenationRule

          '--- Set HyphenationRule
          oFont.HyphenationRule = Font.Hyphenation.ChangeAfter
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a [Font.Hyphenation|Font.Hyphenation] object that represents the hyphenation rule for a character run.{excerpt}
{signature:C#}
 public Hyphenation HyphenationRule{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property HyphenationRule() As Hyphenation
Remarks
MS Word
{signature}
{remarks}MS Word equivalent:
None
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle