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

...

Description

Excerpt

Returns a Shading object which on which you can manipulate the shading (fill color and/or pattern) properties of a paragraph.

Signature
C#
C#
 public Shading Shading{ get; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property Shading() As Shading
{signature}
{remarks}
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 {remarks} {example}{code:csharp|title=C#}

tab

Example
Code Block
csharp
csharp
titleC#

          Shading shading = oParagraphFormatting.Shading;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          Dim shading As Shading = oParagraphFormatting.Shading
        
{code} {example}