Click or drag to resize

IEmailsEmpty Property

Returns true if the collection is empty. i.e. if it contains no elements Checks whether the collection is empty (has no members) or not

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

Property Value

Type: Boolean
Boolean - True if the collection is empty

Implements

IMapCollectionEmpty
Examples

Empty

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

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    if objSO.CurrentContact.Emails.Empty then
        MsgBox "The current contact has no email addresses"
    else
        MsgBox "The current contact has one or more email addresses"
    End if
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also