NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ToolTip.InitialDelay

Gets or sets the initial delay for the ToolTip control.

[Visual Basic]
Public Property InitialDelay As Integer
[C#]
public int InitialDelay {get; set;}
[C++]
public: __property int get_InitialDelay();
public: __property void set_InitialDelay(int);
[JScript]
public function get InitialDelay() : int;
public function set InitialDelay(int);

Property Value

The period of time (in milliseconds) that the mouse pointer must remain stationary within the ToolTip region before the ToolTip text is displayed. The default is equal to the AutomaticDelay property.

Remarks

Every time the AutomaticDelay property is set, the InitialDelay property is set to the same value as the AutomaticDelay property. Once the AutomaticDelay property is set, you can independently set the InitialDelay property, overriding the default value.

See Also

ToolTip Class | ToolTip Members | System.WinForms Namespace | AutomaticDelay