Property Getters/Setters Summary | ||
---|---|---|
method | getIslockedForViewing() | |
Inidicates whether this VBA project is locked for viewing. | ||
method | isProtected() | |
Inidicates whether this VBA project is protected. | ||
method | isSigned() | |
Indicates whether VBAcode is signed or not. | ||
method | getModules() | |
Gets all |
||
method | getName() | |
method | setName(value) | |
Gets and sets the name of the VBA project. | ||
method | getReferences() | |
Gets all references of VBA project. |
Method Summary | ||
---|---|---|
method | protect(islockedForViewing, password) | |
Protects or unprotects this VBA project. |
Property Getters/Setters Detail |
---|
getName/setName : String | |
String getName() / setName(value) |
isSigned : boolean | |
boolean isSigned() |
isProtected : boolean | |
boolean isProtected() |
getIslockedForViewing : boolean | |
boolean getIslockedForViewing() |
getModules : VbaModuleCollection | |
VbaModuleCollection getModules() |
getReferences : VbaProjectReferenceCollection | |
VbaProjectReferenceCollection getReferences() |
Method Detail |
---|
protect | |
protect(islockedForViewing, password) |
islockedForViewing: boolean
- indicates whether locks project for viewing.password: String
-
If the value is null, unprotects this VBA project, otherwise projects the this VBA project.