Click or drag to resize

IListTextItemDeleted Property

Has the item been marked as Deleted A listitem may be marked as deleted in CRM 5 admin, if the item is marked as deleted its still visible in the archive, but the user may no longer choose this item.

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

Property Value

Type: Boolean
Boolean – True if the item is marked as deleted
Examples

Current contact business type deleted

This text may be copied to the notepad, and saved as a *.vbs file. You need a running CRM 5 to make it work. (This example uses the SuperOffice COM application library and not the SuperOffice db library interface).

VB
dim objso
set objso  = CreateObject("superoffice.application")
If not (objSO is nothing) Then
    msgbox "current contact business type, is this deleted?: " & objso.currentcontact.business.deleted,  vbinformation + vbokonly,  "supercom"
else
    msgbox "unable to connect to database"
end if
set objso  = nothing

See Also