VbaModuleAttribute Class |
Namespace: Aspose.Tasks
The VbaModuleAttribute type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | Equals(Object) |
Returns a value indicating whether this instance is equal to the specified VbaModuleAttribute object.
(Overrides ObjectEquals(Object).) |
![]() ![]() | Equals(VbaModuleAttribute) |
Returns a value indicating whether this instance is equal to the specified VbaModuleAttribute object.
|
![]() | Finalize | (Inherited from Object.) |
![]() ![]() | GetHashCode |
Returns a hash code value for this VbaModuleAttribute.
(Overrides ObjectGetHashCode.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
var project = new Project(DataDir + "VbaProject.mpp"); foreach (var module in project.VbaProject.Modules) { Console.WriteLine("Attributes Count: " + module.Attributes.Count); foreach (var attribute in module.Attributes) { Console.WriteLine(" VB Name: " + attribute.Key); Console.WriteLine(" Module: " + attribute.Value); } }