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

setAttribute() protected méthode

protected setAttribute ( XmlElement xml, string name, double val ) : void
xml System.Xml.XmlElement
name string
val double
Résultat void
        protected void setAttribute(XmlElement xml, string name, double val)
        {
            if (!double.IsNaN(val))
                xml.SetAttribute(name, val.ToString());
        }

Same methods

BaseClassIfc::setAttribute ( XmlElement xml, string name, string value ) : void