CSXml.cXmlProperty.getValueString C# (CSharp) Метод

getValueString() публичный Метод

public getValueString ( eTypes type ) : string
type eTypes
Результат string
        public string getValueString(eTypes type)
        {
            return (string)getValue(type);
        }

Usage Example

Пример #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);
        }
All Usage Examples Of CSXml.cXmlProperty::getValueString