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

openoffice报表操作相关的一些宏例子

2012-11-13 
openoffice表格操作相关的一些宏例子Sub Maindim table as objectr_Tables thiscomponent.getTextTables

openoffice表格操作相关的一些宏例子
Sub Main
dim table as object
r_Tables = thiscomponent.getTextTables()
iCount = r_Tables.getCount
'msgbox iCount
tTableNames = r_Tables.getElementNames
for i = 0 to iCount-1
    if tTableNames(i) = "table"then
        table = r_Tables.getByName("table")
        end if
next i
oTableCursor = table.createCursorByCellName("A1")
'oTableCursor.splitRange(2,true)
oTableCursor.goDown(2,true)
'oTableCursor.gotoCellByName("A3",true)
oTableCursor.splitRange(4,false)
End Sub

热点排行