Click or drag to resize

IPersonIsExternalPerson Property

returns true if this person has a login of type 4

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

Property Value

Type: Boolean
Examples

Is external person

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    MsgBox "Is the current person an External Person: " & objSO.CurrentPerson.IsExternalPerson, vbInformation + vbOkOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also