UiaAtkBridge.ComponentImplementorHelper.RefAccessibleAtPoint C# (CSharp) Method

RefAccessibleAtPoint() public method

public RefAccessibleAtPoint ( int x, int y, Atk coordType ) : Atk.Object
x int
y int
coordType Atk
return Atk.Object
		public virtual Atk.Object RefAccessibleAtPoint (int x, int y, Atk.CoordType coordType)
		{
			//TODO: check for children at this point? (maybe use ElementProviderFromPoint ? )
			Log.Warn (this.resource.GetType ().Name + ":RefAccessibleAtPoint not implemented");
			return this.resource;
		}

Usage Example

Ejemplo n.º 1
0
 public virtual Atk.Object RefAccessibleAtPoint(int x, int y, Atk.CoordType coordType)
 {
     return(componentExpert.RefAccessibleAtPoint(x, y, coordType));
 }