getValueString() public method

public getValueString ( eTypes type ) : string
type eTypes
return string
Esempio n. 1
0
        public bool addPropertyToNode(XmlNode node, cXmlProperty xProperty)
        {
            XmlAttribute attr = m_domDoc.CreateAttribute(xProperty.getName());

            attr.Value = xProperty.getValueString(eTypes.eVariant);
            node.Attributes.Append(attr);
            return(true);
        }
Esempio n. 2
0
 public bool addPropertyToNode(XmlNode node, cXmlProperty xProperty)
 {
     XmlAttribute attr = m_domDoc.CreateAttribute(xProperty.getName());
     attr.Value = xProperty.getValueString(eTypes.eVariant);
     node.Attributes.Append(attr);
     return true;
 }