public HtmlScreenElementBase FindHtmlScreenElement(HtmlElement argElement)
        {
            Debug.Assert(null != argElement);
            HtmlScreenElementBase element = null;

            foreach (var item in m_dicElements)
            {
                element = item.Value.FindHtmlScreenElement(argElement);
                if (null != element)
                {
                    return(element);
                }
            }

            return(null);
        }
        public override HtmlScreenElementBase FindHtmlScreenElement(HtmlElement argElement)
        {
            Debug.Assert(null != argElement);
            HtmlScreenElementBase element = null;

            foreach (var item in m_listRows)
            {
                element = item.FindHtmlScreenElement(argElement);
                if (null != element)
                {
                    return(element);
                }
            }

            return(null);
        }