Click or drag to resize

ISelectionSelectionCategory Property

SelectionCategory (list item) Category for selections is a list defined by the database administrator. This might be for example, "Personal phone list", "PDA selection".

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
IListTextItem SelectionCategory { get; set; }

Property Value

Type: IListTextItem
IListTextItem - A reference to the iListtextitem object
Examples

SelectionCategory

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
Dim objSO
Dim result
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    MsgBox "The current selection category: " & ObjSO.CurrentSelection.SelectionCategory.Text, vbInformation + vbOKOnly, "SupeCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also