首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 办公应用 > OFFICE教程 >

openoffice怎么把光标跳转到当前段落的段首或者段尾(宏实现)

2012-09-03 
openoffice如何把光标跳转到当前段落的段首或者段尾(宏实现)Sub MainoDoc ThisComponent Get the curre

openoffice如何把光标跳转到当前段落的段首或者段尾(宏实现)
Sub Main
oDoc = ThisComponent 'Get the current active document.
oViewCur = oDoc.getCurrentController().getViewCursor()
'msgbox oViewCur.dbg_methods
oTextCur = oDoc.getText().createTextCursorByRange(oViewCur)
'msgbox oTextCur.isStartOfParagraph()
oTextCur.gotoStartOfParagraph(false)

rem oTextCur.gotoStartOfParagraph(false) rem 段尾

'msgbox oTextCur.isStartOfParagraph()

oViewCur.gotoRange(oTextCur,false)
End Sub

热点排行