Is there some way to get the name of a field as a string? For example, if I have a class
type
TMyClass = Class
private
fMyField:string
published
procedure SomeProcedure
end;
And in the procedure SomeProcedure
I would like to access the name of the field fMyField
, something alomg the lines of
procedure TMyClass.SomeProcedure;
var
sFieldName:string;
begin
sFieldName := fMyField.FieldName;
ShowMessage(sFieldName)
end;
Where the ShowMessage(sFieldName)
would display "fMyField". Is this possible?
You should to use Run-time type information(RTTI) in this case.
TRTTIContext
has a functionGetFields()
that returns all information about fields