我正在寻找解决我当前使用devexpress usercontrol文档查看器的问题的解决方案。我只是注意到,当我试图将报告发送到我的电子邮件时,它有太多的格式,我不喜欢。我需要隐藏它请看这个图像
我想删除该列表中的某种格式
这个问题类似于我的另一个问题,区别在于这种格式位于此控件中,另一种是在导出中
我虽然如果我删除导出中的格式,它还会删除格式在电子邮件中发送报告的任何建议吗?这是我的代码,用于删除导出中未反映在发送电子邮件功能中的格式
documentViewer1.PrintingSystem.SetCommandVisibility(new PrintingSystemCommand[] {
PrintingSystemCommand.ExportRtf, PrintingSystemCommand.ExportTxt, PrintingSystemCommand.ExportMht,
PrintingSystemCommand.ExportXls, PrintingSystemCommand.ExportXlsx, PrintingSystemCommand.ExportXps,
PrintingSystemCommand.ExportCsv }, CommandVisibility.None);
答案 0 :(得分:1)
您可以使用PrintingSystemCommand.SendXls
和PrintingSystemCommand.SendXlsx
:
documentViewer1.PrintingSystem.SetCommandVisibility(new PrintingSystemCommand[] { PrintingSystemCommand.SendXls, PrintingSystemCommand.SendXlsx }, CommandVisibility.None);
查看PrintingSystemCommand
枚举的可用值。