如何使用spreadsheetgear在excel中添加下拉列表?
我想在 Excel 工作表的一列中添加下拉列表。如何使用电子表格添加它???
I want to add drop down list in one of column of Excel sheet. How to add it using spreadsheetgear????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您尝试将单元格数据验证下拉列表添加到列中,则可以使用 SpreadsheetGear.IValidation 接口(可从 IRange.Validation 属性获取)来执行此操作。我在下面提供了一些示例代码,演示了如何构建两列数据验证。 B 列从同一张纸上的一系列单元格中提取其下拉项; C 列从静态值列表中提取其下拉项。
注意:我在 SpreadsheetGear 工作,为我们产品的客户和评估者提供技术帮助。如果您还有其他问题,请随时通过[电子邮件受保护]与我们联系。
If you are trying to add a cell Data Validation dropdown list to a column, you can do this using the SpreadsheetGear.IValidation interface, available from the IRange.Validation property. I’ve provided some sample code below that demonstrates building two columns of data validation. Column B pulls its dropdown items from a range of cells on the same sheet; Column C pulls its dropdown items from a static list of values.
Note: I work at SpreadsheetGear and provide technical assistance for customers and evaluators of our product. Feel free to contact us at [email protected] if you have additional questions.
您可以使用单元格验证。它的工作方式与 Excel 中的操作方式类似。
在 Windows 窗体程序中,您可以这样称呼它:
You can use cell Validation. It works similarly to how you do it in Excel.
In a windows forms program, you would call it something like this: