#28496
Yutaka Emura
キーマスター

ent 様

[複数選択でタイプする間、選択を保持する] チェック ボックスがチェックされていれば、

document.selection.StartOfLine(false,eeLineLogical);
document.selection.StartOfLine(true,eeLineLogical);
document.selection.EndOfLine(false,eeLineLogical);
document.selection.EndOfLine(true,eeLineLogical);

チェックされていなければ、

document.selection.StartOfLine(false,eeLineLogical);
document.selection.EndOfLine(true,eeLineLogical);

というマクロで可能です。

よろしくお願い申し上げます。