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 the background color for cells.

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

          //--- Get BackgroungColor
          Color bgColor = styl.BackgroundColor;

          //--- Set BackgroundColor
          styl.BackgroundColor = wb.Palette.GetClosestColor(162, 221, 139);
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get BackgroundColor
          Dim bgColor As Color = styl.BackgroundColor

          '--- Set BackgroundColor
          styl.BackgroundColor = wb.Palette.GetClosestColor(162, 221, 139)
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the background color for cells.{excerpt}
{signature:C#}
 public Color BackgroundColor{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property BackgroundColor() As Color
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle