Table of Contents

Property AttributeType

Namespace
SharpVectors.Dom.Svg
Assembly
SharpVectors.Model.dll

AttributeType

Gets or sets the namespace in which the target attribute and its associated values are defined.

public string AttributeType { get; set; }

Property Value

string

The attribute value is one of the following (values are case-sensitive): CSS | XML | auto

  • CSS This specifies that the value of "attributeName" is the name of a CSS property defined as animatable in this specification.
  • XML This specifies that the value of "attributeName" is the name of an XML attribute defined in the default XML namespace for the target element.If the value for "attributeName" has an XMLNS prefix, the implementation must use the associated namespace as defined in the scope of the target element.The attribute must be defined as animatable in this specification.
  • auto The implementation should match the "attributeName" to an attribute for the target element. The implementation must first search through the list of CSS properties for a matching property name, and if none is found, search the default XML namespace for the element.

The default value is 'auto'.