|
|
|
| acListView and acDBListView components.
|
| function ImportFromTXT(const FileName: String; SeparatorChar: Char = #9): Boolean;
|
| The ImportFromTXT method imports the list items from the plain text file to the ListView.
|
|
|
| When it imports items to ListView, it considers each new string as separate row, and the columns should be separated with character specified in SeparatorChar parameter (Tab by default).
|
| MyListViewView.ImportFromTXT('MyTemplate.txt');
|
| ExportToTXT and ExportToHTML methods.
|