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

openoffice在目前段落插入制表位

2012-09-08 
openoffice在当前段落插入制表位REM*****BASIC*****Sub Mainsel thiscomponent.getCurrentController().

openoffice在当前段落插入制表位
REM  *****  BASIC  *****

Sub Main
    sel = thiscomponent.getCurrentController().getSelection().getByIndex(0)
    Dim tab(0 To 1) As New com.sun.star.style.TabStop
    For j =LBound(tab) To UBound(tab)
        tab(j).Alignment = com.sun.star.style.TabAlign.RIGHT
        tab(j).DecimalChar = ASC(".")
        tab(j).FillChar = 32
        tab(j).Position = (j+1) * 1000
    Next
    sel.ParaTabStops = tab

End Sub



热点排行