/// <summary> /// Return a handle to the first child element. /// </summary> TiXmlHandle FirstChildElement() { if (node != null) { TiXmlElement child = node.FirstChildElement(); if (child != null) { return(new TiXmlHandle(child)); } } return(new TiXmlHandle()); }