Jelajahi Produk kami 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.
Kemampuan untuk menambahkan titik ke bentuk konektor dinamis dalam format Visio®. Kode contoh C# berikut menunjukkan cara memilih perutean ulang bentuk konektor dalam diagram VSDX menggunakan API:
// The path to the documents directory. string dataDir = RunExamples.GetDataDir_Shapes(); // Call a Diagram class constructor to load the VSDX diagram Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx"); // Get page by name Page page = diagram.Pages.GetPage("Page-3"); // Get a particular connector shape Shape shape = page.Shapes.GetShape(18); // Set reroute option shape.Layout.ConFixedCode.Value = ConFixedCodeValue.NeverReroute; // Save Visio diagram diagram.Save(dataDir + "RerouteConnectors_out.vsdx", SaveFileFormat.VSDX);
Sebelumnya bentuk tidak diperbarui sesuai Visio®/Interop setelah penambahan teks. Masalah ini sekarang telah diselesaikan di API.
Berbagai skenario konversi format file telah ditingkatkan, seperti, Visio ke HTML, VSD ke VSDX, Diagram ke SVG, dan Konversi VSDX ke PDF.
Cuplikan kode berikut dalam C#, menunjukkan cara mengonversi VSDX ke PDF menggunakan API, sambil memisahkan beberapa halaman:
// The path to the documents directory. string dataDir = RunExamples.GetDataDir_LoadSaveConvert(); // Call the diagram constructor to load diagram from a VSDX file Diagram diagram = new Diagram(dataDir + "Network Diagram_start.vsdx"); // Initialize PdfSaveOptions Aspose.Diagram.Saving.PdfSaveOptions options = new Aspose.Diagram.Saving.PdfSaveOptions(); // set SplitMultiPages option options.SplitMultiPages = true; // save in PDF format diagram.Save(dataDir + "SplitMultiPages.pdf", options);
Untuk daftar lengkap fitur, penyempurnaan, dan perbaikan bug dalam rilis ini, kunjungi Aspose.Diagram for .NET 22.8 Release Notes.