예제 #1
0
파일: HtmlTable.cs 프로젝트: riyanhax/Maui
        /// <summary>
        /// Returns the TD element at the specified position.
        /// </summary>
        /// <returns>the TD element found, null otherwise</returns>
        public IHtmlElement GetCellAt(int row, int column)
        {
            var r = TableBody.GetChildAt("TR", row);

            if (r == null)
            {
                return(null);
            }

            return(r.GetChildAt("TD", column));
        }