This commit is contained in:
2011-10-14 10:43:47 +00:00
parent 7af8870639
commit c04081d056
5 changed files with 48 additions and 0 deletions

View File

@@ -86,6 +86,16 @@ namespace Volian.Svg.Library
set { _Y2 = SvgXmlConverter<SvgMeasurement>.GetObject(value); }
}
#endregion
#region Description
private string _Description = string.Empty;
[System.ComponentModel.DefaultValueAttribute("")]
[XmlElement("desc")]
public string Description
{
get { return _Description; }
set { _Description = value; }
}
#endregion
#region LineColor
//protected Color _LineColor = Color.Empty;
//[XmlIgnoreAttribute()]