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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-03-23
|
166 b
|
17 lines
unit DLLDragObject;
interface
uses
Controls;
type
TTextDragObject = class(TDragObject)
public
Data: String;
end;
implementation
end.