PNG
JPG
BMP
TIFF
VSDX
C# 中的自動佈局 VDX 文檔
使用服務器端 Aspose.Diagram for .NET API 的本機和高性能自動佈局 VDX 文檔,無需使用任何軟件,例如 Microsoft 或 Open Office、Adobe PDF。
如何使用 C# 自動佈局 VDX 文件
為了自動佈局 VDX 文件,我們將使用
API 是一個功能豐富、功能強大且易於使用的文檔操作和合併 API 平台 C#。打開
包管理器,搜索 Aspose.Diagram 並安裝。您也可以從包管理器控制台使用以下命令。
命令
PM> Install-Package Aspose.Diagram
C# 中的自動佈局 VDX 文件的步驟
一個基本的文檔自動佈局
只需幾行代碼即可完成 API。
- 打開一個 Diagram 對象
- 通過其 id 選擇頁面
- 使用頁面的佈局功能
- 調用 Save() 方法並將文件名(完整路徑)和格式(VSDX)作為參數傳遞。
- 現在您可以在 Microsoft Office、Adobe PDF 或任何其他兼容程序中打開和使用 VSDX 文件。
系統要求
所有主要平台和操作系統都支持我們的 API。在執行以下代碼之前,請確保您的系統具有以下先決條件。
- Microsoft Windows 或具有 .NET Framework、.NET Core、Mono 或 COM Interop 的兼容操作系統- Microsoft Visual Studio 等開發環境- Aspose.Diagram for .NET 在您的項目中引用的 DLL - 使用上面的下載按鈕從 NuGet 安裝
自動佈局 VDX 文件 - C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir_Diagrams(); | |
string fileName = "LayOutShapesInCompactTreeStyle.vdx"; | |
// Load an existing Visio diagram | |
Diagram diagram = new Diagram(dataDir + fileName); | |
// Set layout options | |
LayoutOptions compactTreeOptions = new LayoutOptions(); | |
compactTreeOptions.LayoutStyle = LayoutStyle.CompactTree; | |
compactTreeOptions.EnlargePage = true; | |
// Set layout direction as DownThenRight and then save | |
compactTreeOptions.Direction = LayoutDirection.DownThenRight; | |
diagram.Layout(compactTreeOptions); | |
diagram.Save(dataDir + "sample_down_right.vdx", SaveFileFormat.VDX); | |
// Set layout direction as DownThenLeft and then save | |
diagram = new Diagram(dataDir + fileName); | |
compactTreeOptions.Direction = LayoutDirection.DownThenLeft; | |
diagram.Layout(compactTreeOptions); | |
diagram.Save(dataDir + "sample_down_left.vdx", SaveFileFormat.VDX); | |
// Set layout direction as RightThenDown and then save | |
diagram = new Diagram(dataDir + fileName); | |
compactTreeOptions.Direction = LayoutDirection.RightThenDown; | |
diagram.Layout(compactTreeOptions); | |
diagram.Save(dataDir + "sample_right_down.vdx", SaveFileFormat.VDX); | |
// Set layout direction as LeftThenDown and then save | |
diagram = new Diagram(dataDir + fileName); | |
compactTreeOptions.Direction = LayoutDirection.LeftThenDown; | |
diagram.Layout(compactTreeOptions); | |
diagram.Save(dataDir + "sample_left_down.vdx", SaveFileFormat.VDX); |
關於Aspose.Diagram for .NET API
Aspose.Diagram 是 Microsoft Visio 文檔格式操作 API。您可以輕鬆加載、創建、修改、操作包括圖形元素在內的 Visio 圖表轉換為其他格式,例如 PDF、XPS、JPEG、PNG、BMP、TIFF、SVG、EMF 等。它是一個獨立的 API,不需要安裝 Microsoft Visio 或任何其他軟件。在線VDX自動佈局現場演示
立即訪問我們的自動佈局 VDX 文檔 現場演示網站 .現場演示有以下好處
無需下載 Aspose API。
無需編寫任何代碼。
只需上傳您的 VDX 文件。
它將是自動佈局並立即連接起來。
VDX 什麼是 VDX 文件格式
在 Microsoft Visio 中創建但以 XML 格式保存的任何繪圖或圖表都具有 .VDX 擴展名。在 Microsoft 開發的 Visio 軟件中創建 Visio 繪圖 XML 文件。 Microsoft Visio 能夠生成可用於演示文稿和文檔的可視文檔。 Visio 繪圖 XML 文件包含視覺對象和視覺元素的元數據詳細信息。文本也可以添加到這些視覺元素視覺繪圖 XML 文件中。這些 Visio 繪圖 XML 文件與基於 XML 的格式化標準和圖像數據編碼規範相集成,允許 Microsoft Visio 軟件以 VDX 文件格式呈現和存儲其內容。
閱讀更多