1
In Delphi, when we press the combination CTRL+SHIFT+ESPAÇO
after the parentheses of a function, the IDE brings a code Parameter hint, telling the fields that must be informed for that function.
I wonder if there’s a way to copy all this Parameter hint for a String or Tedit, so I can use it as a query helper.
For example, pressing the button Formatfloat, the program shows me the text of the hint Parameter of this function (in case, FormatFloat(const Format: string; Value: Extended)
)
I also accept any alternative that allows me to display the variables used in calling a function.
I believe that there is no way, as this is a feature of the IDE, which can only be accessed in Design.
– Junior Moreira