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

public Hyphenation HyphenationRule{ get; set; }
Public Property HyphenationRule() As Hyphenation

MS Word equivalent: None

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

          //--- Set HyphenationRule
          oFont.HyphenationRule = Font.Hyphenation.ChangeAfter;
        
          '--- Return HyphenationRule
          Dim oHyphenationRule As Font.Hyphenation = oFont.HyphenationRule

          '--- Set HyphenationRule
          oFont.HyphenationRule = Font.Hyphenation.ChangeAfter