[]
        
(Showing Draft Content)

C1.Win.C1InputPanel.C1InputPanel.ShowToolTip

ShowToolTip Method

ShowToolTip(string, Control, Point)

Shows the rich tooltip with the specified text, for the specified control, at the specified position.

Declaration
public void ShowToolTip(string text, Control control, Point pt)
Parameters
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.

ShowToolTip(string, Control, Point, int)

Shows the rich tooltip with the specified text, for the specified control, at the specified position, for a specified amount of time.

Declaration
public void ShowToolTip(string text, Control control, Point pt, int duration)
Parameters
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.

ShowToolTip(string, Control, int, int)

Shows the rich tooltip with the specified text, for the specified control, at the specified position.

Declaration
public void ShowToolTip(string text, Control control, int x, int y)
Parameters
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.

ShowToolTip(string, Control, int, int, int)

Shows the rich tooltip with the specified text, for the specified control, at the specified position, for a specified amount of time.

Declaration
public void ShowToolTip(string text, Control control, int x, int y, int duration)
Parameters
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.

ShowToolTip(InputComponent, Point)

Shows the rich tooltip for the specified InputComponent, at the specified position.

Declaration
public void ShowToolTip(InputComponent inputComponent, Point pt)
Parameters
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.

ShowToolTip(InputComponent, Point, int)

Shows the rich tooltip for the specified InputComponent, at the specified position, for a specified amount of time.

Declaration
public void ShowToolTip(InputComponent inputComponent, Point pt, int duration)
Parameters
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.

ShowToolTip(InputComponent, int, int)

Shows the rich tooltip for the specified InputComponent, at the specified position.

Declaration
public void ShowToolTip(InputComponent inputComponent, int x, int y)
Parameters
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.

ShowToolTip(InputComponent, int, int, int)

Shows the rich tooltip for the specified InputComponent, at the specified position, for a specified amount of time.

Declaration
public void ShowToolTip(InputComponent inputComponent, int x, int y, int duration)
Parameters
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.