(Optional) Specifies the way the data are formatted, such as h:m for hours and minutes.
<<Format( 10, 2, "Use thousands separator");
<<Format( "Currency", "EUR", 20 );
<<Format( "m/d/y", 10 );
<<Format( "Precision", 10, 2, "Keep trailing zeroes", "Keep all whole digits" );
<<Format( "Latitude DDD", "PUNDIR"); // "PUN" for punctuation, "DIR" for direction, PUNDIR for both
<<Format( "Custom", Formula( Abs( value ) ), 15 );
Sets the format used for input and storage for the column. The argument is the name of any JMP format (for example, "ddmmyyyy" for a date column).
Sets the column display width to the n in pixels.
The following example adds the Value Colors column property to the sex column, with pink for females and blue for males.
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Column( "sex" ) << Set Property( "Value Colors", {"F" = 78, "M" = 69} );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Column( "height" ) << Set Property( "Date recorded", 05Jan1990 );
Column Properties in the Scripting Guide provides more examples. See The Column Info Window in the Using JMP book for details about each property.