Package com.aspose.tasks
Class VbaModuleType
- java.lang.Object
-
- com.aspose.ms.System.ValueType<com.aspose.ms.System.Enum>
-
- com.aspose.ms.System.Enum
-
- com.aspose.tasks.VbaModuleType
-
public final class VbaModuleType extends com.aspose.ms.System.EnumSpecifies the type of a module in a VBA project.
-
-
Field Summary
Fields Modifier and Type Field Description static intClassModuleA module that contains the definition for a new object.static intDesignerModuleA module that extends the methods and properties of an ActiveX control that has been registered with the project.static intDocumentModuleA type of VBA project item that specifies a module for embedded macros and programmatic access operations that are associated with a document.static intProceduralModuleA module containing collection of subroutines and functions.
-
Method Summary
-
Methods inherited from class com.aspose.ms.System.Enum
Clone, CloneTo, format, format, get_Caption, get_Value, getName, getName, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, isDefined, isDefined, isDefined, isDefined, parse, parse, parse, parse, register, toObject, toString
-
-
-
-
Field Detail
-
DocumentModule
public static final int DocumentModule
A type of VBA project item that specifies a module for embedded macros and programmatic access operations that are associated with a document.
- See Also:
- Constant Field Values
-
ProceduralModule
public static final int ProceduralModule
A module containing collection of subroutines and functions.
- See Also:
- Constant Field Values
-
ClassModule
public static final int ClassModule
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.
- See Also:
- Constant Field Values
-
DesignerModule
public static final int DesignerModule
A module that extends the methods and properties of an ActiveX control that has been registered with the project.
- See Also:
- Constant Field Values
-
-