UnityEditor.ContainerWindow.INTERNAL_CALL_Internal_Show C# (CSharp) Method

INTERNAL_CALL_Internal_Show() private method

private INTERNAL_CALL_Internal_Show ( ContainerWindow self, Rect &r, int showMode, Vector2 &minSize, Vector2 &maxSize ) : void
self ContainerWindow
r UnityEngine.Rect
showMode int
minSize Vector2
maxSize Vector2
return void
        private static extern void INTERNAL_CALL_Internal_Show(ContainerWindow self, ref Rect r, int showMode, ref Vector2 minSize, ref Vector2 maxSize);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

 private void Internal_Show(Rect r, int showMode, Vector2 minSize, Vector2 maxSize)
 {
     ContainerWindow.INTERNAL_CALL_Internal_Show(this, ref r, showMode, ref minSize, ref maxSize);
 }