创建、插入字段
Contents
[
Hide
]
插入字段
Aspose.Diagram for .NET 让你创建和插入场地从您自己的应用程序到 Microsoft Visio 图表,没有 Microsoft Office 自动化。
编程范例
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_InsertField(); | |
// Create a new diagram | |
// Load source Visio diagram | |
Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx"); | |
// Get Visio page | |
Aspose.Diagram.Page page = diagram.Pages.GetPage("Page-1"); | |
//Get Visio Shape | |
Shape shape = page.Shapes[0]; | |
//Insert field | |
Field fld = new Field(); | |
fld.Value.Val = "1"; | |
shape.Fields.Add(fld); | |
// Save diagram | |
diagram.Save(dataDir + "InsertField_out.vsdx", SaveFileFormat.VSDX); |