Bladeren bron

Added FileName property for Picture

master
AndreyKovalenko_cp 15 jaren geleden
bovenliggende
commit
0fdf00aeed
1 gewijzigde bestanden met toevoegingen van 16 en 0 verwijderingen
  1. 16
    0
      DocX/Picture.cs

+ 16
- 0
DocX/Picture.cs Bestand weergeven

private string name; private string name;
private string descr; private string descr;
private int cx, cy; private int cx, cy;
private string fileName;
private uint rotation; private uint rotation;
private bool hFlip, vFlip; private bool hFlip, vFlip;
private object pictureShape; private object pictureShape;
select a.Value select a.Value
).First(); ).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 = this.descr =
( (
from e in Xml.Descendants() from e in Xml.Descendants()
} }
} }
///<summary>
/// Returns the name of the image file for the picture.
///</summary>
public string FileName
{
get { return fileName; }
}
/// <summary> /// <summary>
/// Get or sets the Width of this Image. /// Get or sets the Width of this Image.
/// </summary> /// </summary>

Laden…
Annuleren
Opslaan