回复 3楼GARYYOU的帖子
请使用以下代码测试,看能否满足你的需求:
- GrapeCity.ActiveReports.Document.SectionDocument sd = new GrapeCity.ActiveReports.Document.SectionDocument();
- GrapeCity.ActiveReports.Document.Section.Page p = new GrapeCity.ActiveReports.Document.Section.Page();
- string s = "T\nE\nS\nT";
- p.DrawText(s, 0, 0, 1000, 1000);
- sd.Pages.Add(p);
- this.viewer1.Document = sd;
复制代码 |