GeometryGym.Ifc.BaseClassIfc.setAttribute C# (CSharp) Méthode

setAttribute() protected méthode

protected setAttribute ( XmlElement xml, string name, string value ) : void
xml System.Xml.XmlElement
name string
value string
Résultat void
        protected void setAttribute(XmlElement xml, string name, string value)
        {
            if (!string.IsNullOrEmpty(value))
                xml.SetAttribute(name, value);
        }

Same methods

BaseClassIfc::setAttribute ( XmlElement xml, string name, double val ) : void