使用 Aspose.Cells 修改 VBA 或宏代码
Contents
[
Hide
]
您可以使用Aspose.Cells修改VBA或宏代码。Aspose.Cells添加了以下类来读取和修改Excel文件中的VBA项目。
- Vba项目
- Vba模块集合
- Vba模块
本文将向您展示如何使用 Aspose.Cells 更改源 Excel 文件中的 VBA 或宏代码。
例子
以下示例代码加载源 Excel 文件,其中包含以下 VBA 或宏代码
Sub Button1_Click()
MsgBox "This is test message."
End Sub
Aspose.Cells示例代码执行后,VBA或Macro代码会修改成这样
Sub Button1_Click()
MsgBox "This is Aspose.Cells message."
End Sub