0

我将文本添加到 pptx 幻灯片中,但不希望它正确对齐。

我使用以下代码

placing = (slide.width/2,0,slide.width/4,0)
txBox = slide.shapes.add_textbox(placing[0], placing[1], placing[2], placing[3])
tf = txBox.text_frame
tf.margin_left = 0
tf.text = text

它有效,但位置不一致,当文本变长或变短时,文本从不同的“左侧”位置开始。

我在这里想念什么?

当文本更长并且它的“左”值正在变化时,文本框架是否可能会变大?在那种情况下,我怎样才能强制文本适合一些任意尺寸?

谢谢

4

0 回答 0