Skip to content

psToolTip - cCJGridColumn

Specifies the tooltip that is displayed when the mouse cursor is positioned over the column header

Type: Property
Access: Read/Write
Data Type: String
Parameters: None

Syntax

Property String psToolTip
Access Type Syntax
Read Access: Get psToolTip to StringVariable
Write Access: Set psToolTip to StringVariable/Value

Description

If no tooltip is specified, then the text stored in the psCaption property will be displayed as the tooltip.

To specify a tooltip to be displayed when the mouse is positioned over data cells in the column body, use the OnGetToolTip event.

ToolTips can display a single line of text or multiple lines. You can embed the CR LF characters in your ToolTip string to break the string into multiple lines.

Define CR_LF for (Character(13)+Character(10))

Set psToolTip to ("This is a ToolTip string that is split" + CR_LF + ;
                  "across two lines.")

Default is "".