获取文档属性
Contents
[
Hide
]
VSTO
下面是显示如何获取 diagram 文档属性的代码:
MessageBox.Show(Application.ActiveDocument.Version.ToString());
MessageBox.Show(Application.ActiveDocument.BuildNumberCreated.ToString());
MessageBox.Show(Application.ActiveDocument.BuildNumberEdited.ToString());
MessageBox.Show(Application.ActiveDocument.TimeCreated.ToString());
MessageBox.Show(Application.ActiveDocument.TimeEdited.ToString());
MessageBox.Show(Application.ActiveDocument.TimePrinted.ToString());
MessageBox.Show(Application.ActiveDocument.TimeSaved.ToString());
Aspose.Diagram
下面的代码片段展示了我们如何显示 diagram 的属性:
//Call the diagram constructor to load diagram from a VDX file
Diagram vdxDiagram = new Diagram("Drawing1.vdx");
//Display Visio version and document modification time at different stages
Console.WriteLine("Visio Instance Version : " + vdxDiagram.Version);
Console.WriteLine("Full Build Number Created : " + vdxDiagram.DocumentProps.BuildNumberCreated);
Console.WriteLine("Full Build Number Edited : " + vdxDiagram.DocumentProps.BuildNumberEdited);
Console.WriteLine("Date Created : " + vdxDiagram.DocumentProps.TimeCreated);
Console.WriteLine("Date Last Edited : " + vdxDiagram.DocumentProps.TimeEdited);
Console.WriteLine("Date Last Printed : " + vdxDiagram.DocumentProps.TimePrinted);
Console.WriteLine("Date Last Saved : " + vdxDiagram.DocumentProps.TimeSaved);
Console.ReadLine();