The persons category - not currently used.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxIListTextItem Category { get; set; }
Property Category As IListTextItem
Get
Set
Dim instance As IPerson
Dim value As IListTextItem
value = instance.Category
instance.Category = value
property IListTextItem^ Category {
IListTextItem^ get ();
void set (IListTextItem^ value);
}
Property Value
Type:
IListTextItem
ExamplesCategory
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Current person Category: " & objSO.CurrentPerson.Category.Text, vbInformation + vbOkOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also