Class TBase
Unit
ok_inherited_members_hide_ancestor
Declaration
type TBase = class(TObject)
Description
This item has no description.
Hierarchy
- TObject
- TBase
Show Additional Members:
Overview
Constants
| Public | MyConst = 42; |
Fields
| Public | BaseField: Integer; |
| Public | MyField: Integer; |
Methods
| Public | procedure MyMethod; virtual; |
| Public | procedure BaseMethod; virtual; |
| Public | procedure OverloadedMethod(const A: String); overload; |
Description
Constants
| Public | MyConst = 42; |
|
Description of MyConst from TBase | |
Fields
| Public | BaseField: Integer; |
|
Description of BaseField, MyField from TBase | |
| Public | MyField: Integer; |
|
Description of BaseField, MyField from TBase | |
Methods
| Public | procedure MyMethod; virtual; |
|
Description of MyMethod from TBase | |
| Public | procedure BaseMethod; virtual; |
|
Description of BaseMethod from TBase | |
| Public | procedure OverloadedMethod(const A: String); overload; |
|
Description of OverloadedMethod from TBase that takes String | |