ToolTipService.GetShowOnDisabled(DependencyObject) Method

Definition

Gets the value of the ShowOnDisabled attached property for an object.

public:
 static bool GetShowOnDisabled(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static bool GetShowOnDisabled (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetShowOnDisabled : System.Windows.DependencyObject -> bool
Public Shared Function GetShowOnDisabled (element As DependencyObject) As Boolean

Parameters

element
DependencyObject

The object from which the property value is read.

Returns

The object's ShowOnDisabled property value.

Attributes

Examples

The following example shows how to get the value for the ToolTipService.ShowOnDisabledProperty attached property. The FindName method finds the object called ellipse2, which is an Ellipse.

myBool = ToolTipService.GetShowOnDisabled(
 (DependencyObject)FindName("ellipse2"));
myBool = ToolTipService.GetShowOnDisabled(CType(FindName("ellipse2"), DependencyObject))

Applies to

See also