IVbaModule.Attributes
IVbaModule.Attributes property
Gets a collection of VbaModuleAttributeCollection
public VbaModuleAttributeCollection Attributes { get; }
Examples
Shows how to read VBA module’s attributes.
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);
}
}
See Also
- class VbaModuleAttributeCollection
- interface IVbaModule
- namespace Aspose.Tasks
- assembly Aspose.Tasks