INTERNAL_CALL_Internal_GetWindowRect() 개인적인 메소드

private INTERNAL_CALL_Internal_GetWindowRect ( int windowID, Rect &value ) : void
windowID int
value Rect
리턴 void
예제 #1
0
        private static Rect Internal_GetWindowRect(int windowID)
        {
            Rect result;

            GUILayoutUtility.INTERNAL_CALL_Internal_GetWindowRect(windowID, out result);
            return(result);
        }