Interfaces autocompletion and statusbar help
Posted: Fri Mar 05, 2010 11:59 pm
As it is now, we have name auto-completion for the procedures we write and the help in the statusbar for the expected parameters to that procedures.
Could be possible to extend that to Interfaces too ?
For example:
If we declare
and then we start to type
we get the list of the available methods
at this point it would be very nice to have in the statusbar the help for the expected parameters like we have for the normal procedures: SetSide(Side.s, Value.d)
Is there any chance, or maybe some way to obtain this already ?
Thank you.
Could be possible to extend that to Interfaces too ?
For example:
Code: Select all
Interface Triangle
Destroy()
GetSide.d(Side.s)
SetSide(Side.s, Value.d)
CalcExtent.d()
EndInterface
Code: Select all
tri.Triangle
Code: Select all
tri\
Code: Select all
tri\SetSide(
Is there any chance, or maybe some way to obtain this already ?
Thank you.