The property must be redeclared in the sub class for the documentation to be inherited. For example:
TMyClass = class(TObject);
private
FMyProperty: integer;
protected
{:Documentation for MyProperty}
property MyProperty: integer read FMyProperty write FMyProperty;
end;
TMySubClass = class(TMyClass);
published
property MyProperty;
end;
|
|
|