Изменение VBA или кода макроса с помощью Aspose.Cells
Вы можете изменять VBA или код макроса с помощью Aspose.Cells. Aspose.Cells добавил следующие классы для чтения и изменения проекта VBA в файле Excel
- VbaProject
- VbaModuleCollection
- VbaModule
Эта статья покажет вам, как изменить код VBA или макроса в исходном файле Excel с помощью Aspose.Cells.
Пример
Приведенный ниже образец кода загружает исходный файл Excel с встроенным VBA-кодом или макросом.
Sub Button1_Click()
MsgBox "This is test message."
End Sub
После выполнения приведенного выше образца кода Aspose.Cells код VBA или макрос будет изменен таким образом.
Sub Button1_Click()
MsgBox "This is Aspose.Cells message."
End Sub
Вы можете загрузить исходный файл Excel и выводной файл Excel по указанным ссылкам
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
String dataDir = Utils.getDataDir(ModifyVBAorMacroCode.class); | |
// Create workbook object from source Excel file | |
Workbook workbook = new Workbook(dataDir + "sample.xlsm"); | |
// Change the VBA Module Code | |
VbaModuleCollection modules = workbook.getVbaProject().getModules(); | |
for (int i = 0; i < modules.getCount(); i++) { | |
VbaModule module = modules.get(i); | |
String code = module.getCodes(); | |
// Replace the original message with the modified message | |
if (code.contains("This is test message.")) { | |
code = code.replace("This is test message.", "This is Aspose.Cells message."); | |
module.setCodes(code); | |
} | |
} | |
// Save the output Excel file | |
workbook.save(dataDir + "output.xlsm"); |