I already know how to use inline templates (prop/propf + CTRL-J) to declare properties that automatically create their private field and their getters/setters, but how do I do the opposite?
I have 166 private fields already declared. Is there a way to have the Delphi IDE automatically create properties for each one of them?
This is what I have:
TMyObject = class(TPersistent)
private
FFirstProp: boolean;
FSecondProp: boolean;
// 164 more of them...
This is what I would like to (ideally) have the IDE create for me:
published
property FirstProp: boolean read FFirstProp write FFirstProp;
property SecondProp: boolean read FSecondProp write FSecondProp;
// and the other 164...