왼쪽 줄 삭제 명령

요약

커서의 왼쪽 줄을 삭제합니다.

설명

커서 위치에서 논리 줄의 시작 부분까지 텍스트를 삭제합니다.

실행하는 방법

  • 기본 메뉴: 없음

  • 모든 명령: 편집 > 삭제 > 왼쪽 줄 삭제

  • 도구 모음: 없음

  • 상태 표시줄: 없음

  • 기본 바로 가기 키: 없음

플러그인 명령 ID

EEID_DELETE_LEFT_LINE (4302)

매크로

[JavaScript]

document.selection.StartOfLine(true,eeLineLogical);
document.selection.Delete(1);

[VBScript]

document.selection.StartOfLine true,eeLineLogical
document.selection.Delete 1