使用AbcPdf 9将文本右对齐

时间:2016-11-18 11:55:31

标签: text abcpdf abcpdf9

我正在使用abcpdf 9.

有没有办法将文字对齐到右边。

目前我有以下

theDoc.Rect.Width = 100;
theDoc.Rect.Height = 21;
theDoc.Rect.Position(490, 808);
theDoc.FontSize = 10;
theDoc.AddText($"Some text");

这会将盒子放在正确的位置,但是文本左对齐,我需要它。

1 个答案:

答案 0 :(得分:3)

尝试

theDoc.TextStyle.HPos = 1.0;

请参阅http://www.websupergoo.com/helppdfnet/source/5-abcpdf/xtextstyle/2-properties/hpos.htm以供参考。