I have done some tests to try
to show the complete parameter name on the Parameters window.
Firstly, I've put the longest parameter name on the top,
and my full code is as below:
aaa = Param("1234567", 70, 10, 100, 1);
ccc = Param("12345", 50, 10, 100, 1);
bbb = Param("123", 30, 10, 100, 1);
As you see the screen cut below, the first name is cut:
Secondly, I've put the longest parameter name on the bottom,
and my full code is as below:
bbb = Param("123", 30, 10, 100, 1);
ccc = Param("12345", 50, 10, 100, 1);
aaa = Param("1234567", 70, 10, 100, 1);
then you can see the longest one is still being cut.
so I've tried one more
bbb = Param("123", 30, 10, 100, 1);
ccc = Param("12345", 50, 10, 100, 1);
aaa = Param("1234567", 70, 10, 100, 1);
aaa = Param("123456789", 90, 10, 100, 1);
it is still the longest one being cut.
Q) Is it the rule, the longest parameter name must be cut?
or is there another way to show the complete parameter name on the Parameters window?
Thank you very much !