home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 September
/
Chip_2001-09_cd1.bin
/
zkuste
/
delphi
/
kolekce
/
d123456
/
DFS.ZIP
/
CBtnReg.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2001-06-27
|
530b
|
32 lines
{$I DFS.INC}
unit CBtnReg;
interface
procedure Register;
implementation
uses
{$IFDEF DFS_NO_DSGNINTF}
DesignIntf,
DesignEditors,
{$ELSE}
DsgnIntf,
{$ENDIF}
DFSClrBn, ColorAEd, CBtnForm, DFSAbout, Classes;
procedure Register;
begin
RegisterComponents('DFS', [TdfsColorButton]);
RegisterPropertyEditor(TypeInfo(TColorArrayClass), NIL, '',
TColorArrayProperty);
RegisterPropertyEditor(TypeInfo(string), TdfsColorButton, 'Version',
TdfsVersionProperty);
end;
end.