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);
        }