VbaModule
VbaModule class
Represents the module in VBA project.
class VbaModule;
Properties
| Property | Type | Description |
|---|---|---|
| name | string | Gets and sets the name of Module. |
| type | VbaModuleType | Readonly. Gets the type of module. |
| binaryCodes | Uint8Array | Readonly. Gets and sets the binary codes of module. |
| codes | string | Gets and sets the codes of module. |
name
Gets and sets the name of Module.
name : string;
type
Readonly. Gets the type of module.
type : VbaModuleType;
binaryCodes
Readonly. Gets and sets the binary codes of module.
binaryCodes : Uint8Array;
codes
Gets and sets the codes of module.
codes : string;