GeometryGym.Ifc.BaseClassIfc.setAttribute C# (CSharp) Method

setAttribute() protected method

protected setAttribute ( XmlElement xml, string name, double val ) : void
xml System.Xml.XmlElement
name string
val double
return 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