Writes all elements of a string list to the .wrt file.
List.bdh
ListWriteBin( theList: list of string) : boolean;
Parameter | Description |
---|---|
theList | List of string. |
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;
00000000 ++" 00 11 22 00000000 3DU 33 44 55 00000000 fw+ 66 77 88 00000000 abc 61 62 63 00000000 ABC 41 42 43