[]
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
Type | Name | Description |
---|---|---|
string | text | Text to be displayed in the tooltip. |
ToolStripItem | item | ToolStripItem that the tooltip is associated with. |