本文介绍了使用EPplus在Excel中添加下拉菜单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要帮助。如何使用Epplus在Excel中添加下拉菜单?无需验证。我只需要将此添加到我的模板中即可。
下拉列表中的记录不是动态的。
I need help. How can i add a drop down in excel using Epplus? No need for validation. I just need to add this to my template.Records in the drop down are not dynamic.
推荐答案
using (ExcelPackage p = new ExcelPackage()) {
ExcelWorksheet ws = obj.CreateSheet(p, "sheetname", 1, true);
var unitmeasure = ws.DataValidations.AddListValidation("a1");
unitmeasure.Formula.Values.Add("Sq Ft");
unitmeasure.Formula.Values.Add("Meter");
}
这篇关于使用EPplus在Excel中添加下拉菜单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!