home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue57 / DragDrop / DLLDragObject.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-03-23  |  166 b   |  17 lines

  1. unit DLLDragObject;
  2.  
  3. interface
  4.  
  5. uses
  6.   Controls;
  7.  
  8. type
  9.   TTextDragObject = class(TDragObject)
  10.   public
  11.     Data: String;
  12.   end;
  13.  
  14. implementation
  15.  
  16. end.
  17.