UiaAtkBridge.ComponentImplementorHelper.Contains C# (CSharp) 메소드

Contains() 공개 메소드

public Contains ( int x, int y, Atk coordType ) : bool
x int
y int
coordType Atk
리턴 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

예제 #1
0
 public virtual bool Contains(int x, int y, Atk.CoordType coordType)
 {
     return(componentExpert.Contains(x, y, coordType));
 }