I would like to check, whether a preference is set to a certain value, but with JSL I cannot retrieve the value to compare it in an if statement etc. and react upon situation. Get Preferences returns something, but what excactly is it and how to proceed with it?
Names Default To Here( 1 );
// Task: what is the preference set to
prefs = Get Platform Preference( Control chart builder( K sigma ) );
// hover over prefs shows the result correctly, but how to retrieve it,
// e.g. as a string?
// what type is this? JMP gives no answer
Type( prefs );
// it has a length
length(prefs);
// this does not work
Log Capture( Get Platform Preference( Control chart builder( K sigma ) ) );
Georg