TdxCustomMemData.LoadFromStrings(TStrings) Method
Loads data from a specified string list.
Declaration
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