GetControlBounds() 개인적인 메소드

private GetControlBounds ( IntPtr control, Rect &bounds ) : IntPtr
control System.IntPtr
bounds Rect
리턴 System.IntPtr
예제 #1
0
        internal static Rect GetControlBounds(IntPtr control)
        {
            Rect bounds;

            API.GetControlBounds(control, out bounds);
            return(bounds);
        }