2

我正在使用 abcpdf 9。

有没有办法将文本向右对齐。

目前我有以下

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

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

4

1 回答 1

3

尝试

theDoc.TextStyle.HPos = 1.0;

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

于 2016-11-19T04:08:33.360 回答