Shape;
BoundingRectangle(1,1);
// This is a simple rectangle with a small shadow on top.

MoveTo(left,top);
LineTo(right,top);
LineTo(right,bottom);
LineTo(left,bottom);
LineTo(left,top);

// Select a black brush, the shadow is always black.
SolidBrush(RGB(0,0,0));

pt0.x = left +grid/4;
pt0.y = top;

pt1.x = left +grid/4;
pt1.y = top +grid/4;

pt2.x = right +grid/4;
pt2.y = top +grid/4;

pt3.x = right +grid/4;
pt3.y = bottom +grid/4;

pt4.x = right;
pt4.y = bottom +grid/4;

pt5.x = right;
pt5.y = top;

pt6.x = left +grid/4;
pt6.y = top;

Polygon(7);
 