SvgMissingGlyph.cs 493 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. #pragma warning disable
  6. namespace Svg
  7. {
  8. [SvgElement("missing-glyph")]
  9. public class SvgMissingGlyph : SvgGlyph
  10. {
  11. [SvgAttribute("glyph-name")]
  12. public override string GlyphName
  13. {
  14. get { return this.Attributes["glyph-name"] as string ?? "__MISSING_GLYPH__"; }
  15. set { this.Attributes["glyph-name"] = value; }
  16. }
  17. }
  18. }
  19. #pragma warning restore