説明
例
// 例を実行する。
// K2を選択する。
// gの文字をタイプすると、最後の行が選択される。
// kiの文字をタイプすると、3番目の行が選択される。
New Window( "Mountains",
tb = Table Box(
sb =
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 );