Click or drag to resize

IListTextItemTooltip Property

Description text, Tooltip text for the list item. Tooltip will appear when you move the mouse pointer over the listtextitem.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string Tooltip { get; }

Property Value

Type: String
String – the active items tooltip
Examples

Get tooltip for business list

This text may be copied to the notepad, and saved as a *.vbs file. You need a running CRM win client to make it work. (This example uses the SuperOffice COM application library and not the SuperOffice db library interface).

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application") 
If not (objSO is nothing) Then
    MsgBox "Current contact business type tooltip: " & objSO.CurrentContact.Business.tooltip, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also