Ejemplo n.º 1
0
 public SvgAttributeBuilder FontSize(float size)
 {
     _element.FontSize = SvgBuilder.Px(size);
     return(this);
 }
Ejemplo n.º 2
0
 public SvgAttributeBuilder Stroke(Color color, float width)
 {
     _element.Stroke      = new SvgColourServer(color);
     _element.StrokeWidth = SvgBuilder.Px(width);
     return(this);
 }