Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于给定的对象,我如何找到基线模块的链接?下面的代码似乎只适用于“当前”工作版本的模块的链接。
Link lnk for lnk in (current Object) -> "*" do { print "Link found" }
谢谢,菲尔
编辑:为代码块添加标记 -Jaambageek
您已经很接近了,不用担心这在 DXL 帮助中也不容易找到。
Link lnk for lnk in all (current Object) -> "*" do { print "Link found" }
我添加的唯一词是all。这允许它找到版本化的链接。您可以在 DXL 帮助中搜索版本化链接,您应该会找到它。
all