Revit API 2015 Python:GetAllViewports()只需1个参数(给定0)

时间:2015-06-14 15:59:16

标签: python api revit

    data = UnwrapElement(IN[0])
    outlist = []
    for i in data:
        vs = ViewSheet.GetAllViewports()
        outlist.append(vs)
    OUT = vs

这类问题:

Revit API 2015 Python: GetAllViewports() takes exactly 1 argument (0 given)

我需要在GetAllViewports()中放置什么arg?

1 个答案:

答案 0 :(得分:1)

错误" ...正好采用1个参数(0给定)"通常暗示您正在调用未绑定的实例方法:相反,请抓住您感兴趣的ViewSheet并从那里调用GetAllViewports方法,而不是在类名上使用该方法(ViewSheet)。