ToolTipService.SetBetweenShowDelay(DependencyObject, Int32) Method

Definition

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

public:
 static void SetBetweenShowDelay(System::Windows::DependencyObject ^ element, int value);
public static void SetBetweenShowDelay (System.Windows.DependencyObject element, int value);
static member SetBetweenShowDelay : System.Windows.DependencyObject * int -> unit
Public Shared Sub SetBetweenShowDelay (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.BetweenShowDelay attached property.

ToolTipService.SetBetweenShowDelay(ellipse1, 2000);
ToolTipService.SetBetweenShowDelay(ellipse1, 2000)

Applies to

See also