The getter and setter of a property should be a method of the class or it's parent - or - a field of the class or it's parent.
Since FTimer.Enabled is neither the above construct won't work.
You might create a getter function and setter procedure that will return this property of FTimer (getter) and set this property of FTimer (setter):
type:
property Enabled: Boolean read GetEnabled write SetEnabled;
now press CTRL-SHIFT-C for class completion. The 2 methods are now created for you.
In the getter type:
Result := FTimer.Enabled;
In the setter type:
FTimer.Enabled := Value;
Et voila!
.