name
wks.col.name$
string
Read/write
Column short name
EX1
// Set col(1)'s short name in active sheet as "Time" wks.col1.name$ = Time; // You can reference another book, but the target sheet must still be active // Set column 5 in the active sheet of Book5 to be an X column Book5!wks.col5.type = 4; // col0 to refer to last column //set last column formula wks.col0.formula$="A";
Ex2
doc -e LB { loop (var, 1, wks.ncols) { type "This is column %(wks.col$(var).name$) in %H, %(page.active$)"; }; };
wks.col.comment$, wks.col.lname$, wks.col.label$, wks.col.unit$