System.Drawing.SolidBrush
Defines a brush of a single color. Brushes are used to fill graphics shapes, such as rectangles, ellipses, pies, polygons, and paths. This class cannot be inherited.
namespace System.Drawing
{
public sealed class SolidBrush : Brush, ISystemColorTracker
{
public Color Color { get; set; }
public SolidBrush(Color color);
}
}