'Declaration
Public Event BeforeTooltipShow As EventHandler(Of BeforeTooltipShowEventArgs)
public event EventHandler<BeforeTooltipShowEventArgs> BeforeTooltipShow
Event Data
The event handler receives an argument of type BeforeTooltipShowEventArgs containing data related to this event. The following BeforeTooltipShowEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Name | ツールチップが表示されようとしている要素の名前を取得します。 |
ToolTip | ツールチップのテキストを取得または設定します。 |
Value | UI 要素のデータ値を取得します。 |
See Also