/** @property */
    public String get_AttributeValue(String Name) {
      String strValue = "";
      Attribute attrName = attrList.GetAttribute(Name);

      if (attrName != null) strValue = attrName.value;

      return strValue;
    }