如何调整 ActiveReports Designer 控件的设计部分的大小?

发布于 2024-08-21 17:44:07 字数 168 浏览 6 评论 0原文

我正在开发一个应用程序(由 C# 编写),该应用程序的一部分使最终用户能够设计他的自我报告。 它有一个选项可以根据传递的数据源自动设计 ActiveReports 控件并显示它,但我无法调整设计部分的标尺大小以适应其宽度。

如何以编程方式调整设计器控件的设计部分的大小?

I'm developing an application (by C#) that has a part that enables the final user to design his self report.
It has an option to design automatically ActiveReports controls from a passed data source and shows it, but I can't resize the designe section's ruler to fit it's width.

How can I resize the design section of the designer control programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流绪微梦 2024-08-28 17:44:07

使用 ActiveReport.ReportWidth 属性设置部分宽度(以英寸为单位),并使用相应的 Section.Height 属性设置高度。

为了通知设计时基础设施(ComponentModel 等)使用属性描述符更新值,例如:

TypeDescriptor.GetProperties(report)["ReportWidth"].SetValue(report, 4f);

Use ActiveReport.ReportWidth property to set section width (in inches) and respective Section.Height to set height.

In order to notify design-time infrastructure (ComponentModel and such) update the values using property descriptor, such as:

TypeDescriptor.GetProperties(report)["ReportWidth"].SetValue(report, 4f);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文