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.
我正在使用一个 MPP 文件,该文件有一些附加列,名称如“Text5”、“Text10”等。显然,这些不是通过 Task 类简单访问的默认列。我见过 Column 类,但没有看到通过 Task 类访问特定命名的列的方法。
如何从除默认列之外的列中的任务对象中检索值?
You could use getFieldByAlias() to get value from custom-name column: Example: task.getFieldByAlias("Text5")
Regards,
Task 类有一个 GetText(int) 方法,允许像这样检索字段。我能够通过对 Text5 字段使用 task.GetText(5) 来获得我需要的值。