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}Returns an [Shading|TableCell.Shading] object which on which you can manipulate the shading \(fill color and/or pattern\) properties for this cell.{excerpt}
{signature:C#}
 public Shading Shading{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Shading() As Shading
{signature}
{remarks}MS Word equivalent: Format menu > Borders and Shading... > Shading tab

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

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

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

{example}