Class TMyClass
Unit
Declaration
type TMyClass = class(TObject)
Description
A simple class.
Source: ok_source_position.pas (line 20).
Hierarchy
- TObject
- TMyClass
Overview
Fields
| Public | MyField: Integer; |
Methods
| Public | procedure MyMethod; |
Properties
| Public | property MyProp: Integer read MyField; |
Description
Fields
| Public | MyField: Integer; |
|
A field. Source: ok_source_position.pas (line 22). | |
Methods
| Public | procedure MyMethod; |
|
A method. Source: ok_source_position.pas (line 24). | |
Properties
| Public | property MyProp: Integer read MyField; |
|
A property. Source: ok_source_position.pas (line 26). | |