Svg.SvgAttributeAttribute.SvgAttributeAttribute C# (CSharp) Method

SvgAttributeAttribute() public method

Initializes a new instance of the SvgAttributeAttribute class with the specified SVG attribute name and namespace.
public SvgAttributeAttribute ( string name, string nameSpace ) : System
name string The name of the SVG attribute.
nameSpace string The namespace of the SVG attribute (e.g. http://www.w3.org/2000/svg).
return System
        public SvgAttributeAttribute(string name, string nameSpace)
        {
            this._name = name;
            this._namespace = nameSpace;
        }
    }

Same methods

SvgAttributeAttribute::SvgAttributeAttribute ( ) : System
SvgAttributeAttribute::SvgAttributeAttribute ( string name ) : System
SvgAttributeAttribute