Hi DAW

I believe this has been asked for before.

Can we please extend the use of the "Description" meta-data tag ? As it is currently it's only used with Published WebService routines.

Using the example below:

Code:
{ Description="Creates a 100x100 thumbnail image from the given filename" } 
Procedure CreateThumbNail String sFilename
...
End_Procedure
..
..
Send CreateThumbNail "avatar.png"
Currently if you hover over the Send (procedure) "CreateThumbNail" - the tooltip is displayed as:

Procedure CreateThumbNail String sFilename
It would great if the tooltip is displayed as:

Procedure CreateThumbNail String sFilename
Creates a 100x100 thumbnail image from the given filename
Much as how Visual Studio does it - it displays both the procedure definition and description.

There are lot of times where the routine is written by someone else or written so long ago that a quick tooltip description would really help, instead of looking up its definition.

Thanks.