Overview
Previous  Next

Rectangles objects store the four points of a rectangle.
These objects are useful in may drawing methods.
To reference the actual object use the Value property.
Example:
Sub App_Start
      Form1.Show
      drawer.New1("form1",false)
      pen1.New1 (cBlue)
      rect1.New1 (100,100,50,50)
      drawer.DrawRectangle(pen1.Value,rect1.Value)
      drawer.Refresh2(rect1.Value)
End Sub