For the latest version of JMP Help, visit JMP.com/help.

JSL Syntax Reference > JSL Messages > All Display Boxes > quoted string Col Boxes
Publication date: 09/28/2021

quoted string Col Boxes

quoted string Col Box<<Add Element(item)

Adds the item to the quoted string Col Box. Item can be a single quoted string or a list of quoted strings.

quoted string Col Box<<Get

quoted string Col Box<<Get(i)

Gets the values in a list or the iā€‰ā€‰th value.

quoted string Col Box<<Get Heading

Returns the column heading text.

quoted string Col Box<<Remove Element(row number)

Removes an element from the column at the specified position.

quoted string Col Box<<Set Allow Text Search(Boolean)

Description

In table boxes with selectable rows, allows a quoted string column that has focus to respond to keyboard input to change the selected row.

Example

// Run the example.
// Select K2.
// Type the letter g. Notice the last row is selected.
// Type the letters ki. Notice the third row is selected.
New Window( "Mountains",
	tb = Table Box(
		sb =
		quoted string Col Box( "Mountain",
			{"K2", "Delphi", "Kilimanjaro",
			"Grand Teton"}
		),
		Number Col Box( "Elevation (meters)",
			{8611, 681, 5895, 4199}
		),
		Plot Col Box( "", {8611, 681, 5895, 4199} )
	)
);
tb << Set Selectable Rows( 1 );
sb << Set Allow Text Search( 1 );

quoted string Col Box<<Set Heading(title)

Changes the column heading specified in the quoted title.

quoted string Col Box<<Set Justify(justification)

Specifies the alignment of the contents in the quoted string col box to "Right", "Left", or "Center".

Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).