Hi, thanks for reading this.
When viewing a column's spec limits in column properties, there is a check box that enables the display of those spec limits in certain platforms.
I'm trying to figure out a way to show the limits with "Show Limits (1)."
With pre-selected columns, I'm working on the following script:
dt = Open();
dtcols = dt << Get Selected Columns;
addprop = Expr(
For(i = 1, i <= NItems(dtcols), i++,
// Column(dt, Char(dtcols))<< Set Property( "Spec Limits", {Show Limits( 1 )} ); //setting the SL property erases the current values, enabling the check box but the spec limits are lost. So:
specs = Column(dt, Char(dtcols)) << Get Property( "Spec Limits" ); //create a copy of the spec limits already in the table,
// Insert Into(specs, Show Limits(1)); //and somehow add "Show Limits(1)" to the spec limits in "specs", but "specs" is a name and not a list
Column(dt, Char(dtcols)) << Set Property( "Spec Limits" , {Eval(specs)} );
)
);
addprop;
Any ideas or suggestions will be much appreciated.
Evan