本文介绍了动态更改水晶报表中框对象和线对象的线条颜色和线条样式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 根据水晶报表中的某些条件动态更改框对象和线对象的边框样式。 注意:我正在使用VS2008 解决方案 必须在c#文件中编写代码,因为在crystal report中没有设置公式来改变线条样式和颜色的选项 if (...) // condition { LineObject lo =(LineObject)Report.ReportDefinition.ReportObjects [ Line1]; lo.LineStyle = CrystalDecisions.Shared.LineStyle.DashLine; lo.LineColor = Color.DarkRed; } 快乐编码! :) Dynamically changing the border style of box object and line object based on some condition in crystal report.Note: am using VS2008 解决方案 Have to write code in your c# file because in crystal report there is not an option for setting formula to change line style and colorif (...) //condition{ LineObject lo = (LineObject)Report.ReportDefinition.ReportObjects["Line1"]; lo.LineStyle = CrystalDecisions.Shared.LineStyle.DashLine; lo.LineColor = Color.DarkRed;}Happy Coding!:) 这篇关于动态更改水晶报表中框对象和线对象的线条颜色和线条样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-05 20:58