Select deleted folio items

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
T[] SelectDeletedItems<T>(
	IFolioModule folioModule,
	bool recursive
)
where T : class, new(), IFolioItem
Visual Basic
Function SelectDeletedItems(Of T As {Class, New, IFolioItem}) ( _
	folioModule As IFolioModule, _
	recursive As Boolean _
) As T()
Visual C++
generic<typename T>
where T : ref class, gcnew(), IFolioItem
array<T>^ SelectDeletedItems(
	IFolioModule^ folioModule, 
	bool recursive
)

Parameters

folioModule
Type: Cartella.Interfaces..::..IFolioModule
The folio module folio items are related to
recursive
Type: System..::..Boolean
If true, returns the folio items that are descendants of the related folio items

Type Parameters

T
Return type, must be non-abstract class derived from IFolioItem

Field Value

T[]

Return Value

Array of deleted FolioItem with given type.

See Also