#23878
Yutaka Emura
キーマスター

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);

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