运行add_break方法后N页分解对象失败

时间:2014-05-31 05:24:33

标签: ms-word python-docx

我遇到了python-docx库的问题。我跟着这个page's example但是它似乎没有用。任何人都可以提供一些帮助吗?

>>> all_runs[0]
<docx.text.Run object at 0x7f49b899c5d0>
>>> play=all_runs[0]
>>> play.add_break(WD_BREAK.PAGE)
>>> play.breaks
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Run' object has no attribute 'breaks'

1 个答案:

答案 0 :(得分:1)

该页面是设计文档的一部分,而不是竣工文档(注意标题&#39; Candidate&#39;协议)。目前尚未在breaks上实施Run属性。

如果你能说一下你想要完成的事情,我可以提供帮助。