From: Jeff R. <jef...@us...> - 2005-11-19 03:13:34
|
Update of /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Scripting In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12283/src/SharpVectorObjectModel/SharpVectors/dom/svg/Scripting Modified Files: SvgScriptElement.cs Log Message: Library wide changes for scripting support and automated re-rendering Index: SvgScriptElement.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Scripting/SvgScriptElement.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgScriptElement.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgScriptElement.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -22,6 +22,12 @@ } #endregion + public string Type + { + get { return GetAttribute("type"); } + set { SetAttribute("type", value); } + } + #region Implementation of ISvgURIReference private SvgURIReference svgURIReference; public ISvgAnimatedString Href |