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
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".