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

أنظر أيضا