Gets an Array of ths FolioModule's child FolioItems of specified type where length of the Array is limited to the specified maxResultCnt, ordered by most recently created IFolioItem (i.e. having highest ID value)

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

Syntax

C#
T[] GetRecentlyCreatedChildEntities<T>(
	int maxResultCnt
)
where T : class, new(), IFolioItem
Visual Basic
Function GetRecentlyCreatedChildEntities(Of T As {Class, New, IFolioItem}) ( _
	maxResultCnt As Integer _
) As T()
Visual C++
generic<typename T>
where T : ref class, gcnew(), IFolioItem
array<T>^ GetRecentlyCreatedChildEntities(
	int maxResultCnt
)

Parameters

maxResultCnt
Type: System..::..Int32

Type Parameters

T

Return Value

See Also