using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OfficeOpenXml.VBA { /// /// To determine if the attribute uses double quotes around the value /// public enum eAttributeDataType { /// /// A string /// String=0, /// /// Not a string /// NonString=1 } public class ExcelVbaModuleAttribute { internal ExcelVbaModuleAttribute() { } /// /// The name of the attribute /// public string Name { get; internal set; } /// /// The datatype. Determine if the attribute uses double quotes around the value. /// public eAttributeDataType DataType { get; internal set; } /// /// The value of the attribute without any double quotes. /// public string Value { get; set; } public override string ToString() { return Name; } } }