has_macros property

FileFormatInfo.has_macros property

Returns True if this document contains a VBA macros.

@property
def has_macros(self) -> bool:
    ...

Examples

Shows how to check VBA macro presence without loading document.

file_format_info = aw.FileFormatUtil.detect_file_format(file_name=MY_DIR + 'Macro.docm')
self.assertTrue(file_format_info.has_macros)

See Also