GenericWindow.GenericWindowBoxIsNull C# (CSharp) Method

GenericWindowBoxIsNull() public method

public GenericWindowBoxIsNull ( ) : bool
return bool
    public bool GenericWindowBoxIsNull()
    {
        if(GenericWindowBox == null)
            return true;
        return false;
    }

Usage Example

 private void nullifyGenericWindow()
 {
     if (genericWinESR != null && !genericWinESR.GenericWindowBoxIsNull())
     {
         genericWinESR.HideAndNull();
     }
 }