Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns an Shading object which on which you can manipulate the default shading (fill color and/or pattern) properties of a table's cells that has this formatting.

 tab

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

          oTableFormatting.Shading.BackgroundColor = Color.Gray;
        
{code}
{code:vb.net
|title=vb.net
}

          oTableFormatting.Shading.BackgroundColor = Color.Gray
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns an [Shading|Shading] object which on which you can manipulate the default shading \(fill color and/or pattern\) properties of a table's cells that has this formatting.{excerpt}
{signature:C#}
 public Shading DefaultShading{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property DefaultShading() As Shading
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Format menu > Borders and Shading... > Shading
tab
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle