CK.WPF.Controls.TextBlockService.GetAutomaticToolTipEnabled C# (CSharp) Method

GetAutomaticToolTipEnabled() private method

private GetAutomaticToolTipEnabled ( DependencyObject element ) : bool
element System.Windows.DependencyObject
return bool
        public static bool GetAutomaticToolTipEnabled( DependencyObject element )
        {
            if( element == null ) throw new ArgumentNullException( "element" );
            return (bool)element.GetValue( AutomaticToolTipEnabledProperty );
        }