In Delphi, when we press the CTRL+SHIFT+ESPAÇO
combination after the parentheses of a function, the IDE brings a code parameter hint , saying the fields that should be entered for that function.
I would like to know if there is a way to copy all of this parameter hint to a String or TEdit, so I can use it as a query helper.
For example, by pressing the FormatFloat button, the program shows me the hint parameter text of this function (in this case, FormatFloat(const Format: string; Value: Extended)
)
I also accept any alternative that allows me to display the variables used in calling a function.