Click or drag to resize

IPersonHasPicture Property

Returns true if the person has a picture

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

Property Value

Type: Boolean
Examples

Has picture

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    MsgBox "Current person HasPicture: " & objSO.CurrentPerson.HasPicture, vbInformation + vbOkOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also