Jelajahi Produk kami

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.

 

Aspose.Tasks untuk .NET 22.12

Unduh  Forum Dukungan 

Detail File

  • Unduhs:
  • 1
  • Ukuran file:
  • 22.91MB
  • Tanggal Ditambahkan:
  • 12/12/2022

Keterangan

Ini berisi MSI dengan Aspose.Tasks untuk rilis .NET 22.12.

Detail File

Peningkatan pembuatan tautan tugas eksternal

Rilis API ini menawarkan peningkatan untuk pembuatan tautan antara tugas lintas proyek untuk MS Project & Reg;:

Contoh berikut menunjukkan cara membuat tautan tugas lintas proyek:

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.

properti linklagtimespan baru

Properti baru LinkLagTimesPan properti telah ditambahkan ke TaskLink. Properti ini mendapatkan atau menetapkan durasi lag, tergantung pada lagformat.

Perhitungan biaya ### untuk beberapa tarif

Peningkatan telah dibuat dalam membuat perhitungan biaya untuk kasus di mana tarif berganda efektif pada hari tertentu.

Untuk daftar lengkap fitur, peningkatan, dan perbaikan bug di rilis ini, silakan kunjungi, Asposetasks untuk catatan rilis Net 2212.

 Indonesia