Questions about "Set Display Width" behavior in JMP 16.2.0
In trying to set a column's display width in JSL using JMP 16.2.0 (MacOS), I'm seeing several issues that I didn't see with JMP 15. 1. The Set Display Width
function appears to operate in two modes, depending on how it's used. If it's called with a hard-coded arg value, it seems to be permanent.col = Column("SN");
col << Set Display Width( 200 );
However, if it's called with a var arg, it display...