type TMyClass = class(TObject)
A simple class.
Source: ok_source_position.pas (line 20).
| Public | MyField: Integer; |
| Public | procedure MyMethod; |
| Public | property MyProp: Integer read MyField; |
| Public | MyField: Integer; |
|
A field. Source: ok_source_position.pas (line 22). | |
| Public | procedure MyMethod; |
|
A method. Source: ok_source_position.pas (line 24). | |
| Public | property MyProp: Integer read MyField; |
|
A property. Source: ok_source_position.pas (line 26). | |