Enum VbaModuleType
Enum VbaModuleType
Namespace: Aspose.Tasks
Assembly: Aspose.Tasks.dll (25.7.0)
Specifies the type of a module in a VBA project.
public enum VbaModuleType
Fields
ClassModule = 2
A module that contains the definition for a new object. Each instance of a class creates a new object, and procedures that are defined in the module become properties and methods of the object.
DesignerModule = 3
A module that extends the methods and properties of an ActiveX control that has been registered with the project.
DocumentModule = 0
A type of VBA project item that specifies a module for embedded macros and programmatic access operations that are associated with a document.
ProceduralModule = 1
A module containing collection of subroutines and functions.