刪除字元 (教程)¶
要刪除字元,添加第五行到我們所示范的巨集中: 儲存該巨集并在一個新的 EmEditor 視窗中運行它。注意,從文字編輯器左邊數過來的 15 個字元 (即,"(tab)EmEditor is a ") 被刪除了。EmEditor 會顯示如下的文字:
"EmEditor supports macros ."
"text editor."
DeleteLeft方法 刪除一個字串左邊的指定的字元數。如果被選取的是文字,那被選取的文字會被刪除;與在鍵盤上按后退鍵 有相同的功能。
同樣,下列方法也可以刪除字元: 刪除被選取的文字。如果沒有選取文字,它會刪除一個字串右邊的指定的字元數。等同于 Delete 鍵。 刪除被選取的文字。如果沒有選取文字,它會刪除一個字串左邊的指定的字元數。等同與后退鍵。 您能通過合併方法來刪除單字或行: 刪除一個單字。 document.selection.SelectWord(); 刪除游標左邊的單字。 document.selection.WordLeft(true); 刪除游標右邊的單字。 document.selection.WordRight(true); 刪除一行。 document.selection.SelectLine(); 刪除游標左邊的行。 document.selection.StartOfLine(true, eeLineLogical); 刪除游標右邊的行。 document.selection.EndOfLine(true, eeLineLogical); 刪除整個文檔。 document.selection.SelectAll(); 刪除一個單字。 document.selection.SelectWord 刪除游標左邊的單字。 document.selection.WordLeft True 刪除游標右邊的單字。 document.selection.WordRight True 刪除一行。 document.selection.SelectLine 刪除游標左邊的行。 document.selection.StartOfLine True, eeLineLogical 刪除游標右邊的行。 document.selection.EndOfLine True, eeLineLogical 刪除整個文檔。 document.selection.SelectAll¶
[JavaScript]¶
document.selection.Text = "EmEditor supports macros.";
document.selection.NewLine();
document.selection.Text = "\tEmEditor is a text editor.";
document.selection.CharLeft( false, 12 );
document.selection.DeleteLeft( 15 );
[VBScript]¶
document.selection.Text = "EmEditor supports macros."
document.selection.NewLine
document.selection.Text = Chr(9) & "EmEditor is a text editor."
document.selection.CharLeft False, 12
document.selection.DeleteLeft 15
[JavaScript]¶
document.selection.Delete();
document.selection.Delete();
document.selection.Delete();
document.selection.Delete();
document.selection.Delete();
document.selection.Delete();
document.selection.Delete();[VBScript]¶
document.selection.Delete
document.selection.Delete
document.selection.Delete
document.selection.Delete
document.selection.Delete
document.selection.Delete
document.selection.Delete