Skip to main content
Version: 4.1

HelpTip

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Represents a small rectangular pop-up window that displays a brief help text next to a control when it gets activated (focused).

public class HelpTip : Component, IExtenderProvider

Constructors

Instance member HelpTip()

Initializes a new instance of the HelpTip without a specified container.

Instance member HelpTip(container)

Initializes a new instance of the HelpTip class with a specified container.

NameTypeDescription
containerIContainerAn IContainer that represents the container of the HelpTip extender.

Properties

Instance member Active

Boolean: Returns or sets whether the HelpTip provider is currently active. (Default: True)

Instance member Alignment

Placement: Returns or sets the position of the HelpTip in relation to the target control. (Default: RightMiddle)

Instance member AllowHtml

Boolean: Returns or sets a value indicating that the control can display html in the Text property. (Default: False)

Instance member AutoPopDelay

Int32: Returns or sets the period of time the HelpTip remains visible if the pointer is stationary on a control with specified HelpTip text. (Default: 0)

Instance member BackColor

Color: Returns or sets the background color for the HelpTip. (Default: Color [Empty])

Instance member ForeColor

Color: Returns or sets the foreground color for the HelpTip. (Default: Color [Empty])

Instance member HelpTipIcon

ToolTipIcon: Returns or sets a value that defines the type of icon to be displayed alongside the HelpTip text. (Default: Default)

Instance member InitialDelay

Int32: Returns or sets the time that passes before the HelpTip appears. (Default: 0)

Instance member Tag

Object: Returns or sets the object that contains programmer-supplied data associated with the HelpTip. (Default: null)

Methods

Instance member CanExtend(target)

Returns true if the HelpTip can offer an extender property to the specified target component.

ParameterTypeDescription
targetObjectThe target object to add an extender property to.

Returns: Boolean. true if the HelpTip class can offer one or more extender properties; otherwise, false.

Instance member Clear()

Removes all HelpTip text currently associated with the HelpTip component.

Protected member Dispose(disposing)

ParameterTypeDescription
disposingBoolean

Instance member GetHelpTip(control)

Retrieves the HelpTip text associated with the specified control.

ParameterTypeDescription
controlControlThe Control for which to retrieve the HelpTip text.

Returns: String. A String containing the HelpTip text for the specified control.

Protected member OnWebRender(config)

Renders the client component.

ParameterTypeDescription
configObjectDynamic configuration object.

Instance member SetHelpTip(control, caption)

Associates HelpTip text with the specified control.

ParameterTypeDescription
controlControlThe Control to associate the HelpTip text with.
captionStringThe HelpTip text to display when the pointer is on the control.

Implements

NameDescription
IUserDataProvides access to the UserData and Tag properties associated to the component implementing this interface.
IWisejComponentAll wisej components implement this interface.
IWisejSerializableAllows an object to serialize itself.