ISProvidersFilter.LoadDeletedInfo

Description

This method is used to load the information about deleted PPPUs on the basis of the defined filter properties.

Syntax

object.LoadDeletedInfo()

Part Attribute Type Description
object Required
The object always implements the ISProvidersFilter interface

Return Value

ISDeleteInfoList

Returns the information about the deleted PPPUs loaded on the basis of the selected filter.

Example

Display the number of the deleted PPPUs loaded on the basis of the selected filter, their GUIDs, IDs, full names and the date they were deleted.

Dim aFilter 
Dim aInfoCollection
Dim aInfo
Dim aPPPU
Dim aMessage

set aFilter = Profile.CreateProvidersFilter
set aInfoCollection = aFilter.LoadDeletedInfo 

aMessage = "There are " & aInfoCollection.Count & " records:" 

for each aInfo in aInfoCollection
  if aInfo.ID > 0 then 
    set aPPPU = Profile.LoadProviderById(aInfo.ID)
    aFullName = aPPPU.FullName
  else
    aFullName = " - "   
  end if   
  aMessage = aMessage & vbNewLine &_
    aInfo.Date & vbtab & vbTab & aInfo.GUID & vbtab & aInfo.ID & vbTab & aFullName  
next

Profile.MsgBox (aMessage)  
Note:

In Profile Client v8 on User Interface cannot be found.

Version information

Added in v8.5.0