Example #1
0
 public LineBase(SVGControlType type) : base(type)
 {
 }
Example #2
0
 public SVGControl(SVGControlType type)
 {
     Type          = type;
     AttributesBag = new StateBag(true);
     Attributes    = new AttributeCollection(AttributesBag);
 }
Example #3
0
 private static string GetControlTypeTag(SVGControlType type)
 {
     return(type.ToString().ToLower());
 }
Example #4
0
 internal PolyLine(SVGControlType type)
     : base(type)
 {
 }