使用 AbcPdf 9 将文本右对齐
Align text to the right using AbcPdf 9
我正在使用 abcpdf 9。
有没有办法让文本右对齐。
目前我有以下
theDoc.Rect.Width = 100;
theDoc.Rect.Height = 21;
theDoc.Rect.Position(490, 808);
theDoc.FontSize = 10;
theDoc.AddText($"Some text");
这会将框放在正确的位置,但文本是左对齐的,我需要它是右对齐的。
尝试
theDoc.TextStyle.HPos = 1.0;
参考http://www.websupergoo.com/helppdfnet/source/5-abcpdf/xtextstyle/2-properties/hpos.htm。
我正在使用 abcpdf 9。
有没有办法让文本右对齐。
目前我有以下
theDoc.Rect.Width = 100;
theDoc.Rect.Height = 21;
theDoc.Rect.Position(490, 808);
theDoc.FontSize = 10;
theDoc.AddText($"Some text");
这会将框放在正确的位置,但文本是左对齐的,我需要它是右对齐的。
尝试
theDoc.TextStyle.HPos = 1.0;
参考http://www.websupergoo.com/helppdfnet/source/5-abcpdf/xtextstyle/2-properties/hpos.htm。