fBaseXtensions.Game.UI.ValidateUIElement C# (CSharp) Метод

ValidateUIElement() публичный статический Метод

Checks if UIElement is not null and is valid and visible.
public static ValidateUIElement ( UIElement uie ) : bool
uie UIElement
Результат bool
		public static bool ValidateUIElement(UIElement uie)
		{
			return uie != null && uie.IsValid && uie.IsVisible;
		}