VbaModule
Contents
[
Hide
]VbaModule class
Represents the module in VBA project.
class VbaModule;
Methods
Method | Description |
---|---|
getName() | Gets and sets the name of Module. |
setName(string) | Gets and sets the name of Module. |
getType() | Gets the type of module. |
getCodes() | Gets and sets the codes of module. |
setCodes(string) | Gets and sets the codes of module. |
isNull() | Checks whether the implementation object is null. |
getName()
Gets and sets the name of Module.
getName() : string;
setName(string)
Gets and sets the name of Module.
setName(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getType()
Gets the type of module.
getType() : VbaModuleType;
Returns
getCodes()
Gets and sets the codes of module.
getCodes() : string;
setCodes(string)
Gets and sets the codes of module.
setCodes(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;