System.Drawing.Drawing2D.HatchBrush
Defines a rectangular brush with a hatch style, a foreground color, and a background color. This class cannot be inherited.
namespace System.Drawing.Drawing2D
{
public sealed class HatchBrush : Brush
{
public Color BackgroundColor { get; }
public Color ForegroundColor { get; }
public HatchStyle HatchStyle { get; }
public HatchBrush(HatchStyle hatchstyle, Color foreColor);
public HatchBrush(HatchStyle hatchstyle, Color foreColor, Color backColor);
}
}