コード例 #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));
        }