本文介绍了如何使用C#在运行时将水晶报表文本对象设置为粗体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用C#代码更新Crystal报表中的文本对象,
I'm updating text objects in my Crystal report in the C# code like this,
ReportDocument rptDoc = new ReportDocument();
rptDoc.Load(Environment.CurrentDirectory + @"\Test.rpt");
TextObject txtTest = (TextObject)rptDoc.ReportDefinition.ReportObjects["txtTest"];
txtTest.Text = "Test";
现在我想在txtTest文本对象中加粗文本。
我正在寻找类似的东西,
Now I want to bold the text in "txtTest" text object.
I'm looking for something like this,
txtTest.Font.Bold = true;
但不幸的是它是只读的。
But unfortunately it is read-only.
推荐答案
System.Drawing.Font font1 = new System.Drawing.Font("Arial", 12, FontStyle.Bold);
txtTest.ApplyFont(font1);
这篇关于如何使用C#在运行时将水晶报表文本对象设置为粗体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!