浏览我们的产品 Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
此API版本为MS Project&Reg的跨项目任务之间的链接创建提供了增强。
下面的示例演示了如何创建跨项目链接链接:
Project project = new Project(); var summary = project.RootTask.Children.Add("Summary Task"); Task t2 = t2 = summary.Children.Add("External Task"); t2.Set(Tsk.ExternalTaskProject, "ExternalProject.mpp"); t2.Set(Tsk.ExternalId, 1); t2.Set(Tsk.ExternalUid, 2); // External task's Unique Id should be set. t2.Set(Tsk.IsExternalTask, true); t2.Set(Tsk.IsManual, new NullableBool(false)); t2.Set(Tsk.IsSummary, false); Task t = summary.Children.Add("Task"); TaskLink link = project.TaskLinks.Add(t2, t); link.IsCrossProject = true; link.LinkType = TaskLinkType.FinishToStart; link.CrossProjectName = "ExternalProject.mpp\\\\1"; // <- here external task's Id is used.
已将新属性Linklagtimespan属性添加到``taskLink’‘中了。该属性获得或设置滞后持续时间,具体取决于“ lagformat”。
Linklagtimespan
对于在特定日期生效的情况下,对成本计算进行了增强。
有关此版本中的功能,增强功能和错误修复的完整列表,请访问净2212发行笔记的Asposetasks。