c# - 在 C# Windows 应用程序中增加 Crystal Reports 的宽度

标签 c# winforms crystal-reports width

我是 C# Windows 应用程序中的 Crystal Report 的新手,我想知道如何增加固定为 A4 大小的 Crystal Report 的宽度。

最佳答案

使用以下代码:

myReport.PrintOptions.PaperSize = PaperSize.PaperB4;

myReport 是您创建的 Crystal Report。

您可以使用除 PaperB4 以外的任何可用的纸张尺寸选项。

希望这有助于...

关于c# - 在 C# Windows 应用程序中增加 Crystal Reports 的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5974460/

相关文章:

C# winforms : graphics. DrawImage 问题

c# - 将 GroupBox 中的所有控件设置为只读?

mysql - Crystal Report 记录过滤 每个记录有 3 种不同的方式 CR10

c# - 如何安装最新的服务栈开源dll

c# - 带左连接的 LINQ 和枚举

c# - .net 3.5 中的协变

c# - C# .NET 中 Windows 窗体之间的值

c# - 想要通过蓝牙将实时信息从手机传输到自定义应用程序

c# - 如何从对象列表填充 TreeView

crystal-reports - 如何查找 Crystal Report rpt 文件的版本?