type TMyClass = class(TObject)
| Public | MyField: Integer; |
| Public | function MyMethod(A: Integer): boolean; |
| Public | property MyProperty: Integer read MyField write MyField; |
| Public | MyField: Integer; |
|
Description of MyField here. | |
| Public | function MyMethod(A: Integer): boolean; |
|
Description of MyMethod here, using parenthesis. Parameters
ReturnsSome boolean value. | |
| Public | property MyProperty: Integer read MyField write MyField; |
|
Description of MyProperty here, with some recursive tags inside: | |