Hi,
Excel comment has a property of Alternative Text, which is not implemented in EPPlus.
To implement it, it is enough to add the following property to ExcelVmlDrawingBase class:
```
public string AlternativeText
{
get
{
return GetXmlNodeString("@alt");
}
set
{
SetXmlNodeString("@alt", value);
}
}
```
Please add this code, we find this property very usefull. Thank you
Regards,
Ivan
Excel comment has a property of Alternative Text, which is not implemented in EPPlus.
To implement it, it is enough to add the following property to ExcelVmlDrawingBase class:
```
public string AlternativeText
{
get
{
return GetXmlNodeString("@alt");
}
set
{
SetXmlNodeString("@alt", value);
}
}
```
Please add this code, we find this property very usefull. Thank you
Regards,
Ivan