[]
Shows the tooltip with the specified text, for the specified control, at the specified position, for a specified amount of time.
public void Show(string text, Control control, Point pt, int duration)
Public Sub Show(text As String, control As Control, pt As Point, duration As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| Control | control | Control that the tooltip is associated with. |
| Point | pt | Point in client coordinates where the tooltip is to be displayed. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the tooltip with the specified text, for the specified control, at the specified position, for a specified amount of time.
public void Show(string text, Control control, int x, int y, int duration)
Public Sub Show(text As String, control As Control, x As Integer, y As Integer, duration As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| Control | control | Control that the tooltip is associated with. |
| int | x | X client coordinate where the tooltip is to be displayed. |
| int | y | Y client coordinate where the tooltip is to be displayed. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the tooltip with the specified text, for the specified control, for a specified amount of time.
public void Show(string text, Control control, int duration)
Public Sub Show(text As String, control As Control, duration As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| Control | control | Control that the tooltip is associated with. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the tooltip with the specified text, for the specified control, at the specified position.
public void Show(string text, Control control, Point pt)
Public Sub Show(text As String, control As Control, pt As Point)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| Control | control | Control that the tooltip is associated with. |
| Point | pt | Point in client coordinates where the tooltip is to be displayed. |
Shows the tooltip with the specified text, for the specified control, at the specified position.
public void Show(string text, Control control, int x, int y)
Public Sub Show(text As String, control As Control, x As Integer, y As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| Control | control | Control that the tooltip is associated with. |
| int | x | X client coordinate where the tooltip is to be displayed. |
| int | y | Y client coordinate where the tooltip is to be displayed. |
Shows the tooltip with the specified text for the specified control.
public void Show(string text, Control control)
Public Sub Show(text As String, control As Control)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| Control | control | Control that the tooltip is associated with. |
Shows the tooltip with the specified text, for the specified ToolStripItem, at the specified position, for a specified amount of time.
public void Show(string text, ToolStripItem item, Point pt, int duration)
Public Sub Show(text As String, item As ToolStripItem, pt As Point, duration As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| ToolStripItem | item | ToolStripItem that the tooltip is associated with. |
| Point | pt | Point in client coordinates where the tooltip is to be displayed. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the tooltip with the specified text, for the specified ToolStripItem, at the specified position, for a specified amount of time.
public void Show(string text, ToolStripItem item, int x, int y, int duration)
Public Sub Show(text As String, item As ToolStripItem, x As Integer, y As Integer, duration As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| ToolStripItem | item | ToolStripItem that the tooltip is associated with. |
| int | x | X client coordinate where the tooltip is to be displayed. |
| int | y | Y client coordinate where the tooltip is to be displayed. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the tooltip with the specified text, for the specified ToolStripItem, for a specified amount of time.
public void Show(string text, ToolStripItem item, int duration)
Public Sub Show(text As String, item As ToolStripItem, duration As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| ToolStripItem | item | ToolStripItem that the tooltip is associated with. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the tooltip with the specified text, for the specified ToolStripItem, at the specified position.
public void Show(string text, ToolStripItem item, Point pt)
Public Sub Show(text As String, item As ToolStripItem, pt As Point)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| ToolStripItem | item | ToolStripItem that the tooltip is associated with. |
| Point | pt | Point in client coordinates where the tooltip is to be displayed. |
Shows the tooltip with the specified text, for the specified ToolStripItem, at the specified position.
public void Show(string text, ToolStripItem item, int x, int y)
Public Sub Show(text As String, item As ToolStripItem, x As Integer, y As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| ToolStripItem | item | ToolStripItem that the tooltip is associated with. |
| int | x | X client coordinate where the tooltip is to be displayed. |
| int | y | Y client coordinate where the tooltip is to be displayed. |
Shows the tooltip with the specified text for the specified ToolStripItem.
public void Show(string text, ToolStripItem item)
Public Sub Show(text As String, item As ToolStripItem)
| Type | Name | Description |
|---|---|---|
| string | text | Text to be displayed in the tooltip. |
| ToolStripItem | item | ToolStripItem that the tooltip is associated with. |