|
こんにちは、K'zawaです。
下記マクロを実行した後の選択状態が変です。
selectcolumnの指定した位置の一端からrangeedittop行にかけてのBOX選択になります。
//setcompatiblemode 0x0F;
config "xTabMode:0x01";
$s = "1\t2\t3\n4\t5\t6\n7\t8\t9\n";
insert $s + $s + $s + $s + $s + $s;
beginsel;
moveto2 0, 10;
rangeeditin;
selectcolumn 1, 1, 1, 1;
結果
selecting 1
selectionlock 0
rectselecting 1
selopenx, selopeny 4, 0
x, y 2, 9
seltopx, seltopy 2, 9
selendx, selendy 4, 0
seltopcolumn, seltoplineno 2, 10
selendcolumn, selendlineno 4, 1
|
|