constructor TPerson.Create ; overload
Erzeugt ein neues Objekt
This is the default constructor.
Inherits: TObject
This is the TPerson class
private FName: string; FAge: Integer; protected procedure Paint; public (**! * @brief Erzeugt ein neues Objekt * @details This is the default constructor. *) constructor Create; overload; (**! * @brief Erzeugt ein neues Objekt mit einen string. * @details This is the constructor with a string. *) constructor Create(S1: String); overload; destructor Destroy; override; (**! * @brief Speichert die aktuellen Daten * * @param S1 string 1 * @param S2 string 2 * * @note Wird intern gecached. * @info Diese Methode ist thread-safe. * @warn X und Y dürfen nicht negativ sein. *) procedure Save(S1: string; S2: string); virtual; (**! * @brief Get the name of the class * @return string - Ein String als Rückgabe *) function GetName: string; property Name: string (**! @brief Datentyp *) read FName (**! @brief getter of Name *) write FName (**! @brief setter of Name *); end;| constructor | Create ; overload |
| Erzeugt ein neues Objekt | |
| constructor | Create (S1: String) ; overload |
| Erzeugt ein neues Objekt mit einen string. | |
| constructor | Create (P1: TPoint) ; overload |
| destructor | Destroy ; override |
| procedure | Save (S1: string ; S2: string) ; virtual |
| Speichert die aktuellen Daten | |
| procedure | Point (A: TPoint ; B: TPoint) |
| function | GetName: string |
| Get the name of the class |
| procedure | Paint |
| property | Name: string read FName write FName |
| string | FName |
| Integer | FAge |
The TPerson class.
Erzeugt ein neues Objekt
This is the default constructor.
Erzeugt ein neues Objekt mit einen string.
This is the constructor with a string.
Speichert die aktuellen Daten
| S1 | string 1 |
| S2 | string 2 |
Get the name of the class
| string - Ein String als Rückgabe |
property Name: string
read FName
write FName
No documentation for this Field.
No documentation for this Field.