瀏覽代碼

Added FileName property for Picture

master
AndreyKovalenko_cp 15 年之前
父節點
當前提交
0fdf00aeed
共有 1 個文件被更改,包括 16 次插入0 次删除
  1. 16
    0
      DocX/Picture.cs

+ 16
- 0
DocX/Picture.cs 查看文件

@@ -20,6 +20,7 @@ namespace Novacode
private string name;
private string descr;
private int cx, cy;
private string fileName;
private uint rotation;
private bool hFlip, vFlip;
private object pictureShape;
@@ -59,6 +60,13 @@ namespace Novacode
select a.Value
).First();
this.fileName =
(
from e in Xml.Descendants(XName.Get("cNvPr", "http://schemas.openxmlformats.org/drawingml/2006/picture"))
select e.Attribute("name").Value
).First();
this.descr =
(
from e in Xml.Descendants()
@@ -275,6 +283,14 @@ namespace Novacode
}
}
///<summary>
/// Returns the name of the image file for the picture.
///</summary>
public string FileName
{
get { return fileName; }
}
/// <summary>
/// Get or sets the Width of this Image.
/// </summary>

Loading…
取消
儲存