收藏 分享(赏)

WORD 光标处理.doc

上传人:s36f12 文档编号:12273502 上传时间:2021-12-08 格式:DOC 页数:3 大小:28.50KB
下载 相关 举报
WORD 光标处理.doc_第1页
第1页 / 共3页
WORD 光标处理.doc_第2页
第2页 / 共3页
WORD 光标处理.doc_第3页
第3页 / 共3页
亲,该文档总共3页,全部预览完了,如果喜欢就下载吧!
资源描述

1、在 WORD 中如何用 VBA 宏语言选定一行、一段,删除一行、一段,移动光标至行首、行尾、段首、段尾等。请看以下内容。Sub MoveToCurrentLineStart()移动光标至当前行首Selection.HomeKey unit:=wdLineEnd SubSub MoveToCurrentLineEnd()移动光标至当前行尾Selection.EndKey unit:=wdLineEnd SubSub SelectToCurrentLineStart()选择从光标至当前行首的内容Selection.HomeKey unit:=wdLine, Extend:=wdExtendEnd

2、SubSub SelectToCurrentLineEnd()选择从光标至当前行尾的内容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()移动光标至

3、文档结尾Selection.EndKey unit:=wdStoryEnd SubSub SelectToDocStart()选择从光标至文档开始的内容Selection.HomeKey unit:=wdStory, Extend:=wdExtendEnd SubSub SelectToDocEnd()选择从光标至文档结尾的内容Selection.EndKey unit:=wdStory, Extend:=wdExtendEnd SubSub SelectDocAll()选择文档全部内容(从 WholeStory 可猜出 Story 应是当前文档的意思)Selection.WholeStory

4、End SubSub MoveToCurrentParagraphStart()移动光标至当前段落的开始Selection.MoveUp unit:=wdParagraphEnd SubSub MoveToCurrentParagraphEnd()移动光标至当前段落的结尾Selection.MoveDown unit:=wdParagraphEnd SubSub SelectToCurrentParagraphStart()选择从光标至当前段落开始的内容Selection.MoveUp unit:=wdParagraph, Extend:=wdExtendEnd SubSub SelectTo

5、CurrentParagraphEnd()选择从光标至当前段落结尾的内容Selection.MoveDown unit:=wdParagraph, Extend:=wdExtendEnd SubSub SelectCurrentParagraph()选择光标所在段落的内容Selection.MoveUp unit:=wdParagraphSelection.MoveDown unit:=wdParagraph, Extend:=wdExtendEnd SubSub DisplaySelectionStartAndEnd()显示选择区的开始与结束的位置,注意:文档第 1 个字符的位置是 0Msg

6、Box (“第“ & 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

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报