[]
Shows the rich tooltip with the specified text, for the specified control, at the specified position.
public void ShowToolTip(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 relative to the control where the tooltip is to be displayed. |
Shows the rich tooltip with the specified text, for the specified control, at the specified position, for a specified amount of time.
public void ShowToolTip(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 relative to the control where the tooltip is to be displayed. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the rich tooltip with the specified text, for the specified control, at the specified position.
public void ShowToolTip(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 coordinate relative to the control where the tooltip is to be displayed. |
| int | y | Y coordinate relative to the control where the tooltip is to be displayed. |
Shows the rich tooltip with the specified text, for the specified control, at the specified position, for a specified amount of time.
public void ShowToolTip(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 coordinate relative to the control where the tooltip is to be displayed. |
| int | y | Y coordinate relative to the control where the tooltip is to be displayed. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the rich tooltip for the specified InputComponent, at the specified position.
public void ShowToolTip(InputComponent inputComponent, Point pt)
| Type | Name | Description |
|---|---|---|
| InputComponent | inputComponent | InputComponent that the tooltip is associated with. |
| Point | pt | Point relative to a C1InputPanel where the tooltip is to be displayed. |
Shows the rich tooltip for the specified InputComponent, at the specified position, for a specified amount of time.
public void ShowToolTip(InputComponent inputComponent, Point pt, int duration)
| Type | Name | Description |
|---|---|---|
| InputComponent | inputComponent | InputComponent that the tooltip is associated with. |
| Point | pt | Point relative to a C1InputPanel where the tooltip is to be displayed. |
| int | duration | Duration of the tooltip, in milliseconds. |
Shows the rich tooltip for the specified InputComponent, at the specified position.
public void ShowToolTip(InputComponent inputComponent, int x, int y)
| Type | Name | Description |
|---|---|---|
| InputComponent | inputComponent | InputComponent that the tooltip is associated with. |
| int | x | X coordinate relative to a C1InputPanel where the tooltip is to be displayed. |
| int | y | Y coordinate relative to a C1InputPanel where the tooltip is to be displayed. |
Shows the rich tooltip for the specified InputComponent, at the specified position, for a specified amount of time.
public void ShowToolTip(InputComponent inputComponent, int x, int y, int duration)
| Type | Name | Description |
|---|---|---|
| InputComponent | inputComponent | InputComponent that the tooltip is associated with. |
| int | x | X coordinate relative to a C1InputPanel where the tooltip is to be displayed. |
| int | y | Y coordinate relative to a C1InputPanel where the tooltip is to be displayed. |
| int | duration | Duration of the tooltip, in milliseconds. |