Blader door onze producten 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.
Möglichkeit zum Hinzufügen von Punkten zur dynamischen Verbinderform in Visio®-Formaten. Der folgende C#-Beispielcode zeigt, wie Sie die Umleitung der Konnektor-Shapes in VSDX-Diagrammen mithilfe der API auswählen:
// 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);
Zuvor wurden die Shapes nach dem Hinzufügen von Text nicht gemäß Visio®/Interop aktualisiert. Dieses Problem wurde jetzt in der API behoben.
Verschiedene Dateiformatkonvertierungsszenarien wurden verbessert, z. B. Visio zu HTML, VSD zu VSDX, Diagramm zu SVG und VSDX zu PDF-Konvertierung.
Das folgende Code-Snippet in C# zeigt, wie VSDX mithilfe der API in PDF konvertiert wird, während mehrere Seiten aufgeteilt werden:
// 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);
Eine vollständige Liste der Funktionen, Verbesserungen und Fehlerbehebungen in dieser Version finden Sie unter Aspose.Diagram for .NET 22.8 Release Notes.