Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxFastList.AddRange(TdxFastList) Method

Appends the source ordered pointer list’s content to the current list.

#Declaration

Delphi
procedure AddRange(AList: TdxFastList);

#Parameters

Name Type
AList TdxFastList

#Remarks

Call this procedure and pass the source ordered pointer list as the AList parameter to append all stored pointers to the current list. The AddRange procedure also expands the list if its current capacity is less than the resulting number of stored pointers (that is, the Count property value).

Note

Call the Add function instead if you need to append only a single pointer to the list.

See Also