日本免费全黄少妇一区二区三区-高清无码一区二区三区四区-欧美中文字幕日韩在线观看-国产福利诱惑在线网站-国产中文字幕一区在线-亚洲欧美精品日韩一区-久久国产精品国产精品国产-国产精久久久久久一区二区三区-欧美亚洲国产精品久久久久

word如何讓光標落在指定位置

word如何讓光標落在指定位置

word如何讓光標落在指定位置



1、電腦打開word文檔,正常輸入文字內(nèi)容 。

word如何讓光標落在指定位置


【word如何讓光標落在指定位置】2、輸入文字后,光標默認是在剛剛輸入文字之后 。

word如何讓光標落在指定位置


3、這時候只要移動鼠標,會有一個類似于“工”字的符號,移動到需要的位置,點擊下鼠標左鍵,就可以把光標定位到對應位置 。

word如何讓光標落在指定位置


4、通過鍵盤輸入文字,就會在光標位置進行輸入 。

word如何讓光標落在指定位置


5、也可以通過鍵盤的上下左右鍵來移動光標,使得光標上下左右的移動來確定位置 。

word如何讓光標落在指定位置


word的VBA問題,如何讓光標移動到指定的位置?移動光標至文檔開始Selection.HomeKey unit:=wdStory下面的供參考:Sub MoveToCurrentLineStart()'移動光標至當前行首Selection.HomeKey unit:=wdLineEnd SubSub MoveToCurrentLineEnd()'移動光標至當前行尾Selection.EndKey unit:=wdLineEnd SubSub SelectToCurrentLineStart()'選擇從光標至當前行首的內(nèi)容Selection.HomeKey unit:=wdLine, Extend:=wdExtendEnd SubSub SelectToCurrentLineEnd()'選擇從光標至當前行尾的內(nèi)容Selection.EndKey unit:=wdLine, Extend:=wdExtendEnd SubSub SelectCurrentLine()'選擇當前行Selection.HomeKey unit:=wdLineSelection.EndKey unit:=wdLine, Extend:=wdExtendEnd SubSub MoveToDocStart()'移動光標至文檔開始Selection.HomeKey unit:=wdStoryEnd SubSub MoveToDocEnd()'移動光標至文檔結(jié)尾Selection.EndKey unit:=wdStoryEnd SubSub SelectToDocStart()'選擇從光標至文檔開始的內(nèi)容Selection.HomeKey unit:=wdStory, Extend:=wdExtendEnd SubSub SelectToDocEnd()'選擇從光標至文檔結(jié)尾的內(nèi)容Selection.EndKey unit:=wdStory, Extend:=wdExtendEnd SubSub SelectDocAll()'選擇文檔全部內(nèi)容(從WholeStory可猜出Story應是當前文檔的意思)Selection.WholeStoryEnd SubSub MoveToCurrentParagraphStart()'移動光標至當前段落的開始Selection.MoveUp unit:=wdParagraphEnd SubSub MoveToCurrentParagraphEnd()'移動光標至當前段落的結(jié)尾Selection.MoveDown unit:=wdParagraphEnd SubSub SelectToCurrentParagraphStart()'選擇從光標至當前段落開始的內(nèi)容Selection.MoveUp unit:=wdParagraph, Extend:=wdExtendEnd SubSub SelectToCurrentParagraphEnd()'選擇從光標至當前段落結(jié)尾的內(nèi)容Selection.MoveDown unit:=wdParagraph, Extend:=wdExtendEnd SubSub SelectCurrentParagraph()'選擇光標所在段落的內(nèi)容Selection.MoveUp unit:=wdParagraphSelection.MoveDown unit:=wdParagraph, Extend:=wdExtendEnd SubSub DisplaySelectionStartAndEnd()'顯示選擇區(qū)的開始與結(jié)束的位置,注意:文檔第1個字符的位置是0MsgBox ("第" & Selection.Start & "個字符至第" & Selection.End & "個字符")End SubSub DeleteCurrentLine()'刪除當前行Selection.HomeKey unit:=wdLineSelection.EndKey unit:=wdLine, Extend:=wdExtendSelection.DeleteEnd SubSub DeleteCurrentParagraph()'刪除當前段落Selection.MoveUp unit:=wdParagraphSelection.MoveDown unit:=wdParagraph, Extend:=wdExtendSelection.DeleteEnd Sub

    推薦閱讀