code_page property

VbaProject.code_page property

Gets or sets the VBA project’s code page.

@property
def code_page(self) -> int:
    ...

@code_page.setter
def code_page(self, value: int):
    ...

Remarks

Please note that VBA is pre-Unicode feature and you have to explicitly set appropriate code page to preserve regional character sets.

Examples

Shows how to access a document’s VBA project information.

from api_example_base import ApiExampleBase, MY_DIR
import aspose.words as aw
doc = aw.Document(file_name=MY_DIR + 'VBA project.docm')
# A VBA project contains a collection of Vba modules.
vba_project = doc.vba_project
# Get the count of VBA modules using count property instead of len()
modules_count = vba_project.modules.count
print(f'Project name: {vba_project.name} signed; Project code page: {vba_project.code_page}; Modules count: {modules_count}\n' if vba_project.is_signed else f'Project name: {vba_project.name} not signed; Project code page: {vba_project.code_page}; Modules count: {modules_count}\n')
vba_modules = doc.vba_project.modules
self.assertEqual(vba_modules.count, 3)
for module in vba_modules:
    print(f'Module name: {module.name};\nModule code:\n{module.source_code}\n')
# Set new source code for VBA module. You can access VBA modules in the collection either by index or by name.
vba_modules[0].source_code = 'Your VBA code...'
vba_modules.get_by_name('Module1').source_code = 'Your VBA code...'
# Remove a module from the collection.
vba_modules.remove(vba_modules[2])

See Also