ControlzEx.Microsoft.Windows.Shell.WindowChrome.GetIsHitTestVisibleInChrome C# (CSharp) Method

GetIsHitTestVisibleInChrome() private method

private GetIsHitTestVisibleInChrome ( IInputElement inputElement ) : bool
inputElement IInputElement
return bool
        public static bool GetIsHitTestVisibleInChrome(IInputElement inputElement)
        {
            Verify.IsNotNull(inputElement, "inputElement");
            var dobj = inputElement as DependencyObject;
            if (dobj == null)
            {
                throw new ArgumentException("The element must be a DependencyObject", "inputElement");
            }
            return (bool)dobj.GetValue(IsHitTestVisibleInChromeProperty);
        }