VbaProject constructor

init(self)

This constructor creates new VBA project from scratch. Project will be created in 1252 Windows Latin 1 (ANSI) codepage

def __init__(self):
    ...

init(self, data)

This constructor loads VBA project from binary representation of OLE container.

def __init__(self, data):
    ...
ParameterTypeDescription
databytes

See Also