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

GetSize() 공개 메소드

public GetSize ( int &width, int &height ) : void
width int
height int
리턴 void
		public virtual void GetSize (out int width, out int height)
		{
			width = (int)resource.BoundingRectangle.Width;
			height = (int)resource.BoundingRectangle.Height;
		}

Usage Example

예제 #1
0
 public virtual void GetSize(out int width, out int height)
 {
     componentExpert.GetSize(out width, out height);
 }