ToolTipService.SetShowDuration(DependencyObject, Int32) Method

Definition

Sets the value of the ShowDuration attached property for an object.

public:
 static void SetShowDuration(System::Windows::DependencyObject ^ element, int value);
public static void SetShowDuration (System.Windows.DependencyObject element, int value);
static member SetShowDuration : System.Windows.DependencyObject * int -> unit
Public Shared Sub SetShowDuration (element As DependencyObject, value As Integer)

Parameters

element
DependencyObject

The object to which the attached property is written.

value
Int32

The value to set.

Examples

The following example shows how to set the value for the ToolTipService.ShowDuration attached property.

ToolTipService.SetShowDuration(ellipse1, 7000);
ToolTipService.SetShowDuration(ellipse1, 7000)

Applies to

See also