It is available, however it's internal there 8) Anyway, this is how Flowchart.NET draws the hatch frame:
if (st == HandlesStyle.HatchFrame)
{
rc.Inflate(size / 2, size / 2);
System.Drawing.Drawing2D.HatchBrush hatchBrush =
new System.Drawing.Drawing2D.HatchBrush(
HatchStyle.BackwardDiagonal, Color.Black, Color.White);
RectangleF[] rects = new RectangleF[]
{
new RectangleF(rc.Left + size, rc.Top, rc.Width - 2 * size, size),
new RectangleF(rc.Left + size, rc.Bottom - size, rc.Width - 2 * size, size),
new RectangleF(rc.Left, rc.Top, size, rc.Height),
new RectangleF(rc.Right - size, rc.Top, size, rc.Height)
};
for (int i = 0; i < 4; ++i)
graphics.FillRectangle(hatchBrush, rects[i]);
hatchBrush.Dispose();
return;
}
I hope that helps,
Stoyan