Sets or returns a boolean that represents whether or not Word will apply breaking rules in this document.

public boolean ApplyBreakingRules{ get; set; }
Public Property ApplyBreakingRules() As Boolean

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for [filename].doc section > Options > Use line breaking rules

          //--- Return ApplyBreakingRules
          bool applyBreakingRules = cs.ApplyBreakingRules;

          //--- Set ApplyBreakingRules
          cs.ApplyBreakingRules = true;
        
          '--- Return ApplyBreakingRules
          Dim applyBreakingRules As Boolean = cs.ApplyBreakingRules

          '--- Set ApplyBreakingRules
          cs.ApplyBreakingRules = True