Skip to content

psToolTip - cStatusPane

Gets and sets the tool tip text that appears when an object or item is highlighted

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

psToolTip is used to set and get the tool tip text that appears when an object or item is highlighted (i.e., a mouse hover over).

Sample

Set psToolTip to "some useful descriptive text"

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.")