Language

ToolTip.InitialDelay プロパティ

定義

ツールヒントが表示されるまでの時間を取得または設定します。

public:
 property int InitialDelay { int get(); void set(int value); };
public int InitialDelay { get; set; }
member this.InitialDelay : int with get, set
Public Property InitialDelay As Integer

プロパティ値

ツールヒント ウィンドウが表示される前に、ポインターがコントロール上で静止している必要がある時間 (ミリ秒単位)。

例

次のコード例では、 ToolTip クラスのインスタンスを作成し、インスタンスをインスタンスが作成された Form に関連付けます。 次に、遅延プロパティ AutoPopDelay、 InitialDelay、および ReshowDelayを初期化します。 さらに、 ToolTip クラスのインスタンスは、フォームがアクティブかどうかに関係なくツールヒント テキストを表示できるように、 ShowAlways プロパティを true に設定します。 最後に、ツールヒント テキストをフォームの 2 つのコントロール ( Button と CheckBox) に関連付けます。 このコード例では、この例で定義されているメソッドが、Form という名前のButton コントロールと button1 という名前のCheckBox コントロールを含むcheckBox1,内にあり、メソッドがFormのコンストラクターから呼び出されている必要があります。

// This example assumes that the Form_Load event handling method
// is connected to the Load event of the form.
void Form1_Load( Object^ sender, System::EventArgs^ e )
{
   // Create the ToolTip and associate with the Form container.
   ToolTip^ toolTip1 = gcnew ToolTip;
   
   // Set up the delays for the ToolTip.
   toolTip1->AutoPopDelay = 5000;
   toolTip1->InitialDelay = 1000;
   toolTip1->ReshowDelay = 500;
   // Force the ToolTip text to be displayed whether or not the form is active.
   toolTip1->ShowAlways = true;
   
   // Set up the ToolTip text for the Button and Checkbox.
   toolTip1->SetToolTip( this->button1, "My button1" );
   toolTip1->SetToolTip( this->checkBox1, "My checkBox1" );
}
// This example assumes that the Form_Load event handling method
// is connected to the Load event of the form.
private void Form1_Load(object sender, System.EventArgs e)
{
   // Create the ToolTip and associate with the Form container.
   ToolTip toolTip1 = new ToolTip();

   // Set up the delays for the ToolTip.
   toolTip1.AutoPopDelay = 5000;
   toolTip1.InitialDelay = 1000;
   toolTip1.ReshowDelay = 500;
   // Force the ToolTip text to be displayed whether or not the form is active.
   toolTip1.ShowAlways = true;
      
   // Set up the ToolTip text for the Button and Checkbox.
   toolTip1.SetToolTip(this.button1, "My button1");
   toolTip1.SetToolTip(this.checkBox1, "My checkBox1");
}
' This example assumes that the Form_Load event handling method
' is connected to the Load event of the form.
Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles MyBase.Load
   ' Create the ToolTip and associate with the Form container.
   Dim toolTip1 As New ToolTip()
   
   ' Set up the delays for the ToolTip.
   toolTip1.AutoPopDelay = 5000
   toolTip1.InitialDelay = 1000
   toolTip1.ReshowDelay = 500
   ' Force the ToolTip text to be displayed whether or not the form is active.
   toolTip1.ShowAlways = True
   
   ' Set up the ToolTip text for the Button and Checkbox.
   toolTip1.SetToolTip(Me.button1, "My button1")
   toolTip1.SetToolTip(Me.checkBox1, "My checkBox1")
End Sub

注釈

InitialDelay プロパティを使用すると、ツールヒント ウィンドウを表示する前にToolTipが待機する時間を短縮または長くできます。 InitialDelay プロパティの値が期間が長すぎる値に設定されている場合、アプリケーションのユーザーは、アプリケーションがツールヒント ヘルプを提供することを認識していない可能性があります。 このプロパティを使用すると、指定した時間を短縮することで、ユーザーにツールヒントをすばやく表示させることができます。

このプロパティの値は 32767 を超えることはできません。

ツールヒント ウィンドウに一貫した遅延パターンを設定する場合は、 AutomaticDelay プロパティを設定できます。 AutomaticDelay プロパティは、AutoPopDelay、ReshowDelay、およびInitialDelayのプロパティを、1 つの時間値に基づいて初期値に設定します。 AutomaticDelay プロパティが設定されるたびに、InitialDelay プロパティは AutomaticDelay プロパティと同じ値に設定されます。 AutomaticDelay プロパティが設定されたら、InitialDelay プロパティを個別に設定し、既定値をオーバーライドできます。

適用対象

こちらもご覧ください