GetControlBounds() private method

private GetControlBounds ( IntPtr control, Rect &bounds ) : IntPtr
control System.IntPtr
bounds Rect
return System.IntPtr
Beispiel #1
0
        internal static Rect GetControlBounds(IntPtr control)
        {
            Rect bounds;

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