UnityEditor.PopupWindowContent.OnClose C# (CSharp) Method

OnClose() public method

Callback when the popup window is closed.

public OnClose ( ) : void
return void
        public virtual void OnClose()
        {
        }

Usage Example

Example #1
0
 // Change to private protected once available in C#.
 internal void CloseContent()
 {
     if (m_WindowContent != null)
     {
         m_WindowContent.OnClose();
     }
 }
All Usage Examples Of UnityEditor.PopupWindowContent::OnClose