製品を閲覧する

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.Diagram for .NET 22.8

ダウンロード  サポートフォーラム 

ファイルの詳細

  • Downloads:
  • 1
  • File Size:
  • 13.04MB
  • Date Added:
  • 3/8/2022

ファイルの詳細

動的コネクタ形状

Visio® 形式の動的コネクタ形状にポイントを追加する機能。次の C# サンプル コードは、API を使用して VSDX ダイアグラムでコネクタ シェイプの再ルーティングを選択する方法を示しています。

// 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);

Visio® / Interop 機能の改善

以前は、テキストの追加後に Visio®/Interop に従って図形が更新されていませんでした。この問題は API で解決されました。

Visio® からさまざまな形式への変換の改善

Visio から HTML、VSD から VSDX、Diagram から SVG、VSDX から PDF への変換など、さまざまなファイル形式変換シナリオが改善されました。

次の C# のコード スニペットは、複数のページを分割しながら、API を使用して VSDX を PDF に変換する方法を示しています。

// 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);

このリリースの機能、拡張機能、バグ修正の完全なリストについては、Aspose.Diagram for .NET 22.8 Release Notes にアクセスしてください。

 日本