fBaseXtensions.Game.UI.ValidateUIElement C# (CSharp) Method

ValidateUIElement() public static method

Checks if UIElement is not null and is valid and visible.
public static ValidateUIElement ( UIElement uie ) : bool
uie UIElement
return bool
		public static bool ValidateUIElement(UIElement uie)
		{
			return uie != null && uie.IsValid && uie.IsVisible;
		}