C# Class Habanero.Faces.Win.ToolTipWin

Represents a small rectangular pop-up window that displays a brief description of a control's purpose when the user rests the pointer on the control
Inheritance: System.Windows.Forms.ToolTip, IToolTip
Mostra file Open project: Chillisoft/habanero.faces

Public Methods

Method Description
GetToolTip ( IControlHabanero controlHabanero ) : string

Retrieves the ToolTip text associated with the specified control

SetToolTip ( IControlHabanero controlHabanero, string toolTipText ) : void

Associates ToolTip text with the specified control

Method Details

GetToolTip() public method

Retrieves the ToolTip text associated with the specified control
public GetToolTip ( IControlHabanero controlHabanero ) : string
controlHabanero IControlHabanero The Control for which to retrieve the ToolTip text
return string

SetToolTip() public method

Associates ToolTip text with the specified control
public SetToolTip ( IControlHabanero controlHabanero, string toolTipText ) : void
controlHabanero IControlHabanero The Control to associate the ToolTip text with
toolTipText string The ToolTip text to display when the pointer is on the control
return void