IDE - HELP-Comment, to set the displayed Help-Text in Editor
Posted: Wed Feb 17, 2016 3:00 pm
So far, the whole Declaration of a Procedure or Macro will be displayed as Help-Text at the Bottom of the IDE.
Would it be possible to define this Help-Text, maybe by a following Comment with a Keyword (like the TODO or FIXIT Keywords)?
Example:
Procedure.s hBox(Expand, Align=#PB_Default, Spacing=#PB_Default, XmlParam$="") actually generates the Help Text:
hBox(Expand, Align=#PB_Default, Spacing=#PB_Default, XmlParam$="") which is not very clear to read.
A Help-Text in the usual PB-Format would be much easier to read:
hBox(Expand [, Align [, Spacing [, XmlParam$]]]) - generates a String with a <hbox...>-Tag in XML-Format
Maybe it could be implemented like this:
Procedure.s hBox(Expand=#PB_Default, Align=#PB_Default, Spacing=#PB_Default, XmlParam$="") ; HELP: hBox(Expand [, Align [, Spacing [, XmlParam$]]]) - generates a String with a <hbox...>-Tag in XML-Format
Would it be possible to define this Help-Text, maybe by a following Comment with a Keyword (like the TODO or FIXIT Keywords)?
Example:
Procedure.s hBox(Expand, Align=#PB_Default, Spacing=#PB_Default, XmlParam$="") actually generates the Help Text:
hBox(Expand, Align=#PB_Default, Spacing=#PB_Default, XmlParam$="") which is not very clear to read.
A Help-Text in the usual PB-Format would be much easier to read:
hBox(Expand [, Align [, Spacing [, XmlParam$]]]) - generates a String with a <hbox...>-Tag in XML-Format
Maybe it could be implemented like this:
Procedure.s hBox(Expand=#PB_Default, Align=#PB_Default, Spacing=#PB_Default, XmlParam$="") ; HELP: hBox(Expand [, Align [, Spacing [, XmlParam$]]]) - generates a String with a <hbox...>-Tag in XML-Format