1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- #pragma warning disable
- namespace Svg
- {
- [SvgElement("missing-glyph")]
- public class SvgMissingGlyph : SvgGlyph
- {
- [SvgAttribute("glyph-name")]
- public override string GlyphName
- {
- get { return this.Attributes["glyph-name"] as string ?? "__MISSING_GLYPH__"; }
- set { this.Attributes["glyph-name"] = value; }
- }
- }
- }
- #pragma warning restore
|