GeometryGym.Ifc.BaseClassIfc.setAttribute C# (CSharp) 메소드

setAttribute() 보호된 메소드

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