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 boolean that represents whether or not Word will use table styles like Word 2002. Word 2002 places the top border of a column under the heading row, rather than above it as Word 2003 does.

 rules

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

          //--- Return UseTableStylesLike2002
          bool useTableStylesLike2002 = cs.UseTableStylesLike2002;

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

          '--- Return UseTableStylesLike2002
          Dim useTableStylesLike2002 As Boolean = cs.UseTableStylesLike2002

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

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that represents whether or not Word will use table styles like Word 2002. Word 2002 places the top border of a column under the heading row, rather than above it as Word 2003 does.{excerpt}
{signature:C#}
 public boolean UseTableStylesLike2002{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property UseTableStylesLike2002() As Boolean
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for \[filename\].doc section > Options > Use Word 2002 table style
rules
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle