SourceFullName
Chart.SourceFullName property
获取此图表链接到的 xls/xlsx 文件的路径和名称。
public string SourceFullName { get; set; }
例子
显示如何获取/设置外部 xls/xlsx 文档的全名(如果图表已链接)。
Document doc = new Document(MyDir + "Shape with linked chart.docx");
Shape shape = (Shape)doc.GetChild(NodeType.Shape, 0, true);
var sourceFullName = shape.Chart.SourceFullName;
Assert.True(sourceFullName.Contains("Examples\\Data\\Spreadsheet.xlsx"));
sourceFullName = "D:\\Documents\\ChartData.xlsx";
Assert.True(sourceFullName.Equals("D:\\Documents\\ChartData.xlsx", StringComparison.Ordinal));
也可以看看
- class Chart
- 命名空间 Aspose.Words.Drawing.Charts
- 部件 Aspose.Words