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
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that represents whether or not Word will apply breaking rules in this document.{excerpt}
{signature:C#}
 public boolean ApplyBreakingRules{ get; set; }
{signature}{signature:vb.net}
Public Property ApplyBreakingRules() As Boolean
{signature}
{remarks}MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for \[filename\].doc section > Options > Use line breaking rules

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

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

          //--- Set ApplyBreakingRules
          cs.ApplyBreakingRules = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Return ApplyBreakingRules
          Dim applyBreakingRules As Boolean = cs.ApplyBreakingRules

          '--- Set ApplyBreakingRules
          cs.ApplyBreakingRules = True
        {code}

{example}