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 should use Word 6 border rules for this document.{excerpt}
{signature:C#}
 public boolean BorderRulesLike6{ get; set; }
{signature}{signature:vb.net}
Public Property BorderRulesLike6() As Boolean
{signature}
{remarks}This is set to {{true}} by default.

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for \[filename\].doc section > Options > Use Word 6.x/95 Border rules

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

          //--- Return BorderRulesLike6
          bool borderRulesLike6 = cs.BorderRulesLike6;

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

          '--- Return BorderRulesLike6
          Dim borderRulesLike6 As Boolean = cs.BorderRulesLike6

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

{example}