|
: 223 : 224 : 1 |
One of the big negatives for using classes in LotusScript is the fact that they live in the declarations section.
I would like to see a specific section created in the LotusScript editor that at the least works like the Java Editor.
The following is my crude example of how I see it fitting in.
_______________________________________
(options) (declarations) - (classes) - ClassName1
+ Properties
- Methods
- New(x as string, y as integer)
- doSomethingFancy()
+ ClassName2
+ ClassName3
_______________________________________
For those that don't know, TeamStudio have a free tool called Script Browser that does this in an external way, but I would like to see it integrated into the LotusScript editor itself.
|