在 LibreOffice Calc 中插入带有基本宏的单元格

问题描述 投票:0回答:1

我正在尝试插入一个从范围中的第一个单元格开始的单元格(通过文档活动工作表的 .getCellRangeByName() 方法)。

我找到了如何使用 OpenOffice 库 (.uno:InsertCell) 中的调度程序来执行此操作,但如果可能的话,我更愿意使用不需要调度程序的东西。

我计划连接到按钮的示例代码...

Sub AddManualBalance(EntryDate As Date, EntryAmount As Currency)

    Dim Doc As Object
    Dim Sheet As Object
    Doc = ThisComponent
    If Doc Is Nothing Then
        Return
    EndIf
    Sheet = Doc.getCurrentController().getActiveSheet()
    If Sheet Is Nothing Then
        Return
    EndIf
    
    Dim TargetCells As Object
    TargetCells = Sheet.getCellRangeByName("B9:C9");

    // insert a cell in both the B and C columns at position 9,
    // then move all other cells down

    // add my EntryDate as a value to the new cell in B column
    // add my EntryAmount as a value to the new cell in C column

End Sub

预先感谢您的帮助!

附注我真的不喜欢 Basic,但似乎对于电子表格和办公应用程序自动化来说,这是首选语言。有没有办法用更类似于 C 的语言来执行 LibreOffice/OpenOffice 宏?

basic libreoffice-calc uno
1个回答
2
投票

以下代码可以满足您的要求:

Dim Doc As Object
Dim Sheet As Object
Dim oDestCell As Object
Dim CellRangeAddress As New com.sun.star.table.CellRangeAddress

Doc = ThisComponent
Sheet = Doc.Sheets(0)

CellRangeAddress.Sheet = 0
CellRangeAddress.StartColumn = 1
CellRangeAddress.StartRow = 8
CellRangeAddress.EndColumn = 2
CellRangeAddress.EndRow = 8

Sheet.insertCells(CellRangeAddress, com.sun.star.sheet.CellInsertMode.DOWN)

oDestCell=Sheet.getCellByPosition(1,8)
oDestCell.setValue(EntryDate)

oDestCell=Sheet.getCellByPosition(2,8)
oDestCell.setValue(EntryAmount)

您可以在 api.libreoffice.org 阅读有关 C++ 和 LibreOffice 的信息

© www.soinside.com 2019 - 2024. All rights reserved.