2017年6月18日 2:16 am #23878
Keymaster
Delフサ 様
いつもお世話になっております。江村です。
これを実現するには、以下のような、マクロを使うと可能です。
s = "";
if( !document.selection.IsEmpty ) {
yTop = document.selection.GetTopPointY( eePosView );
yBottom = document.selection.GetBottomPointY( eePosView );
for( y = yTop; y <= yBottom; y++ ) {
s += document.GetLine( y, eeGetLineView | eeGetLineWithNewLines );
}
}
clipboardData.setData("Text", s);
よろしくお願い申し上げます。