Class TPerson

Unit

Declaration

type TPerson = class(TObject)

Description

Hierarchy

  • TObject
  • TPerson

Overview

Properties

Public property Name : String read FName write FName;
Public property Age : Integer read FAge write FAge;

Description

Properties

Public property Name : String read FName write FName;
 
Attributes
NonEmptyString('Must provide a Name')
Public property Age : Integer read FAge write FAge;
 
Attributes
MinimumInteger(18, 'Must be at least 18 years old')
MaximumInteger(65, 'Must be no older than 65 years')