Exemple #1
0
        public string GetUiXPath(int x, int y)
        {
            StringBuilder sb = new StringBuilder(4096, Int16.MaxValue);

            try
            {
                WinAPIs.GetUiXPath(x, y, sb, sb.Capacity);
            }
            catch (Exception e)
            {
                throw;
            }
            return(sb.ToString());
        }