{description}
{excerpt}Sets or returns the background color for cells.{excerpt}
{signature:C#}
 public Color BackgroundColor{ get; set; }
{signature}{signature:vb.net}
Public Property BackgroundColor() As Color
{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}