/// <summary> /// Find element at the <see cref="SciterPoint"/> of the window, client area relative /// </summary> public static SciterElement GetElementAtPoint(this SciterWindow window, SciterPoint point) { return(window?.GetElementAtPointInternal(point: point)); }
/// <summary> /// Find element at point x/y of the window, client area relative /// </summary> public static SciterElement GetElementAtPoint(this SciterWindow window, int x, int y) { return(window?.GetElementAtPointInternal(x: x, y: y)); }