I wonder what will be the best way to readout the changes made in a TValueListeditor.
The stringList i’m using has the following structure :
aParam1=100
aParam2=222
aparam3=....
....
...
with one line of code I can assign this stringlist to the TValueListEditor
ValueListEditor.strings.assign(myDataStringlist);
and edit this stringlist. How to save my changes now back to the Stringlist ?
Just call
myDataStringlist.Assign(ValueListEditor1.strings);both are TStrings
TStringList = class(TStrings)
TValueListEditor
property Strings: TStrings read GetStrings write SetStrings;