c# – PdfPCell中的水平文本对齐方式

前端之家收集整理的这篇文章主要介绍了c# – PdfPCell中的水平文本对齐方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用此代码水平对齐.
cell = New PdfPCell();
p = New Phrase("value");
cell.AddElement(p);
cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER; //Tried with Element.Align_Center Also. Tried Adding this line before adding element also. 
table.AddCell(cell);

它不起作用.

我正在创建一个包含5列的表,并在运行时使用上面的代码在for循环中动态添加单元格.我希望所有单元格内容都居中.

解决方法

试试这个,
cell = New PdfPCell();
p = New Phrase("value");
cell.AddElement(p);
cell.HorizontalAlignment = Element.ALIGN_CENTER; //Tried with Element.Align_Center Also. Tried Adding this line before adding element also. 
table.AddCell(cell);
原文链接:https://www.f2er.com/csharp/98397.html

猜你在找的C#相关文章