home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / COMMON / TOOLS / VB / CABINETS / MSDAO350.CAB / icontrols / CustomDrawEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-01-08  |  784 b   |  20 lines

  1. package icontrols;
  2.  
  3. import com.ms.wd.core.Event;
  4. import com.ms.wd.ui.Graphics;
  5. import com.ms.wd.ui.Rectangle;
  6.  
  7. public class CustomDrawEvent extends Event {
  8.    public Graphics graphics = null;
  9.    public Rectangle bounds = null;
  10.    public Rectangle clipRect = null;
  11.    public CustomDrawData data = null;
  12.  
  13.    public CustomDrawEvent(Graphics graphics, Rectangle bounds, Rectangle clipRect, CustomDrawData data) {
  14.       this.graphics = graphics;
  15.       this.bounds = bounds;
  16.       this.clipRect = clipRect;
  17.       this.data = data;
  18.    }
  19. }
  20.