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

TdxCustomMemData.LoadFromStrings(TStrings) Method

Loads data from a specified string list.

#Declaration

Delphi
procedure LoadFromStrings(AStrings: TStrings); dynamic;

#Parameters

Name Type
AStrings TStrings

#Remarks

Call this method to populate the ExpressMemData component with data from a string list referenced by the AStrings parameter. The string list must contain data in the format that is produced by the SaveToStrings method. Refer to the description of the SaveToStrings method to learn about its specifics.

The LoadFromStrings method is called internally by the LoadFromTextFile method, which loads data from a file to a string list using the list’s LoadFromFile method and then calls LoadFromStrings to load the data to the ExpressMemData component.

See Also