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 a Shading object which on which you can manipulate the shading (fill color and/or pattern) properties of a paragraph.

 tab

{remarks}
{example}{code:csharp|title=C#}
          Shading shading = oParagraphFormatting.Shading;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim shading As Shading = oParagraphFormatting.Shading
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Shading|ParagraphFormatting.Shading] object which on which you can manipulate the shading \(fill color and/or pattern\) properties of a paragraph.{excerpt}
{signature:C#}
 public Shading Shading{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Shading() As Shading
Remarks
{signature}
{remarks}Note: The shading on a paragraph will be overridden by shading set on a character run.


MS Word equivalent: Format menu > Borders and Shading... > Shading
tab
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle