ListWriteBin Function

Action

Writes all elements of a string list to the .wrt file.

Include file

List.bdh

Syntax

ListWriteBin(
   theList: list of string) : boolean;
Parameter Description
theList List of string.

Return value

  • true if successful
  • false otherwise

Example

transaction TAListWriteBin
var
  lStringBin: list of string init "\h001122", "\h334455", "\h667788";  
  lString: list of string init "abc", "ABC";
begin
  ListWriteBin(lStringBin); 
  ListWriteBin(lString); 
end TAListWriteBin;

Output

00000000  ++"               00 11 22 
00000000  3DU               33 44 55 
00000000  fw+               66 77 88 
00000000  abc               61 62 63 
00000000  ABC               41 42 43