Svg.SvgAttributeAttribute.SvgAttributeAttribute C# (CSharp) Method

SvgAttributeAttribute() private method

Initializes a new instance of the SvgAttributeAttribute class with the specified attribute name.
private SvgAttributeAttribute ( string name ) : System
name string The name of the SVG attribute.
return System
        internal SvgAttributeAttribute(string name)
        {
            this._name = name;
            this._namespace = SVG_NAMESPACE;
        }

Same methods

SvgAttributeAttribute::SvgAttributeAttribute ( ) : System
SvgAttributeAttribute::SvgAttributeAttribute ( string name, string nameSpace ) : System
SvgAttributeAttribute