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
SyntaxIListTextItem SelectionCategory { get; set; }
Property SelectionCategory As IListTextItem
Get
Set
Dim instance As ISelection
Dim value As IListTextItem
value = instance.SelectionCategory
instance.SelectionCategory = value
property IListTextItem^ SelectionCategory {
IListTextItem^ get ();
void set (IListTextItem^ value);
}
Property Value
Type:
IListTextItemIListTextItem - A reference to the iListtextitem object
ExamplesSelectionCategory
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
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