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;
		}