VbaProject

VbaProject class

Represents the VBA project.

Methods

NameDescription
getModules()Gets all VbaModule objects.
getName()Gets and sets the name of the VBA project.
getReferences()Gets all references of VBA project.
isProtected()Indicates whether this VBA project is protected.
isSigned()Indicates whether VBAcode is signed or not.
protect(islockedForViewing, password)Protects or unprotects this VBA project. If islockedForViewing is true, the password could not be null.
setName()Gets and sets the name of the VBA project.
validatePassword(password)Validates protection password.

getModules()

Gets all VbaModule objects.

getName()

Gets and sets the name of the VBA project.

getReferences()

Gets all references of VBA project.

isProtected()

Indicates whether this VBA project is protected.

isSigned()

Indicates whether VBAcode is signed or not.

protect(islockedForViewing, password)

Protects or unprotects this VBA project. If islockedForViewing is true, the password could not be null.

ParameterTypeDescription
islockedForViewingbooleanindicates whether locks project for viewing.
passwordStringIf the value is null, unprotects this VBA project, otherwise protect this VBA project.

setName()

Gets and sets the name of the VBA project.

validatePassword(password)

Validates protection password.

ParameterTypeDescription
passwordStringthe password

Returns: boolean — boolean Whether password is the protection password of this VBA project