C# Class Habanero.Faces.VWG.ToolTipVWG

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: ToolTip, IToolTip
Mostrar archivo 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 controlHabanero

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 controlHabanero
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 controlHabanero
return void