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 / Displayer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-01-08  |  837 b   |  13 lines

  1. package icontrols;
  2.  
  3. import com.ms.wd.ui.Graphics;
  4. import com.ms.wd.ui.Rectangle;
  5.  
  6. public abstract class Displayer {
  7.    public abstract void paintIn(Graphics var1, Rectangle var2, Rectangle var3, CustomDrawData var4);
  8.  
  9.    public void eventHandler(CustomDrawEvent event) {
  10.       this.paintIn(event.graphics, event.bounds, event.clipRect, event.data);
  11.    }
  12. }
  13.