ToolTipService.SetInitialShowDelay(DependencyObject, Int32) Method

Definition

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

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

ToolTipService.SetInitialShowDelay(ellipse1, 1000);
ToolTipService.SetInitialShowDelay(ellipse1, 1000)

Applies to

See also