Mono.UIAutomation.UiaDbusSource.UiaDbusElement.GetDescendantFromPoint C# (CSharp) Méthode

GetDescendantFromPoint() public méthode

public GetDescendantFromPoint ( double x, double y ) : IElement
x double
y double
Résultat IElement
		public IElement GetDescendantFromPoint (double x, double y)
		{
			string descendantPath = null;
			try {
				descendantPath = dbusElement.GetDescendantPathFromPoint (x, y);
			} catch (Exception ex) {
				throw DbusExceptionTranslator.Translate (ex);
			}
			return source.GetOrCreateElement (busName, descendantPath);
		}