UnityEditor.GUIViewDebuggerHelper.INTERNAL_CALL_GetRectFromInstruction C# (CSharp) Method

INTERNAL_CALL_GetRectFromInstruction() private method

private INTERNAL_CALL_GetRectFromInstruction ( int instructionIndex, Rect &value ) : void
instructionIndex int
value UnityEngine.Rect
return void
        private static extern void INTERNAL_CALL_GetRectFromInstruction(int instructionIndex, out Rect value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

        public static Rect GetRectFromInstruction(int instructionIndex)
        {
            Rect result;

            GUIViewDebuggerHelper.INTERNAL_CALL_GetRectFromInstruction(instructionIndex, out result);
            return(result);
        }