UiaAtkBridge.ComponentImplementorHelper.Contains C# (CSharp) Method

Contains() public method

public Contains ( int x, int y, Atk coordType ) : bool
x int
y int
coordType Atk
return bool
		public bool Contains (int x, int y, Atk.CoordType coordType)
		{
			if (coordType == Atk.CoordType.Window)
				resource.ConvertCoords (ref x, ref y, true);
			return resource.BoundingRectangle.Contains (new System.Windows.Point (x, y));
		}

Usage Example

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