本文介绍了写一个关于它的短语和段落的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要在同一行写下这段代码的pdf:
I need to write in pdf on the same line this code:
pdfDoc.Add(new iTextSharp.text.Paragraph(" Numero:") ); $
pdfDoc.Add(new iTextSharp.text.Phrase(this.comboBox2.Text.Trim()));
pdfDoc.Add(new iTextSharp.text.Paragraph("Numero:"));
pdfDoc.Add(new iTextSharp.text.Phrase(this.comboBox2.Text.Trim()));
我需要加入这两个因此它们出现在同一条线上。
I need to join these two so that they appear on the same line.
推荐答案
你也可以在段对象上连接它们,如:
you can also concatenate those on the paragraph object like:
pdfDoc.Add(new iTextSharp.text.Paragraph("Numero: "+this.comboBox2.Text.Trim()));
Hope it helps!
这篇关于写一个关于它的短语和段落的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!