If you have a component image for this class/component in a .dcr file, you can add this .dcr file to the project ("Delphi Component Images") node. This will also mark the class as a component to T2H. (A class in the project having the same name as a bitmap in a .dcr file will be assumed to be a component).
If you don't have a component image in a .dcr file, you can add a @component tag to a DocComment for the class. Like:
{:This is summary for my component. This is description for my component. blablabla. @component} TMyComponent = class(....) ... End; |
|