New Window( "Mountains",
tb = Table Box(
String Col Edit Box(
"Mountain",
{"K2", "Delphi", "Kilimanjaro",
"Grand Teton"}
),
Number Col Edit Box(
"Elevation (meters)",
{8611, 681, 5895, 4199}
),
Plot Col Box( "", {8611, 681, 5895, 4199} )
)
);
tb <<
Set Cell Changed Function(
Function( {this, col, row},
Print(
(col << Get Heading) || ": row:" ||
Char( 3 ) || " is now " ||
Char( col << Get( row ) )
)
)
);
Locks the first n columns. You cannot drag the locked columns or drag columns before them.