本文介绍了以编程方式设置CrystalReport详细信息部分宽度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好b $ b
我正在VS2008中开发Crystal Report。我需要为detailsection设置宽度(section3)。我可以手动制作。 DetailSection - >右键单击 - >部分专家 - >布局 - >设置宽度。
告诉我如何通过编程方式执行此操作。
问候
senthil
Hi
I'm Developing Crystal Report in VS2008. I need to set width for detailsection (section3). i Can made this manually. DetailSection--> Right Click--> Section Expert--> LayOut--> Set Width.
Tell me how to do this by Programmatically.
Regards
senthil
推荐答案
Dim section As Section = reportDocument.ReportDefinition.Sections("Section3")
section.Width = width
这篇关于以编程方式设置CrystalReport详细信息部分宽度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!