GeometryGym.Ifc.IfcPropertySetTemplate.SetXML C# (CSharp) 메소드

SetXML() 개인적인 메소드

private SetXML ( XmlElement xml, BaseClassIfc host, HashSet processed ) : void
xml XmlElement
host BaseClassIfc
processed HashSet
리턴 void
        internal override void SetXML(XmlElement xml, BaseClassIfc host, HashSet<int> processed)
        {
            base.SetXML(xml, host, processed);
            if (mTemplateType != IfcPropertySetTemplateTypeEnum.NOTDEFINED)
                xml.SetAttribute("TemplateType", mTemplateType.ToString().ToLower());
            setAttribute(xml,"ApplicableEntity", ApplicableEntity);
            setChild(xml, "HasPropertyTemplates", HasPropertyTemplates, processed);
        }