Passing Large Amounts of Data

Valid from List & Label 9
When passing large amounts of data, you'll probably want to use a descendant of the stream class. There are descendants for file or memory access, for example. A frequently needed example is: passing a locally stored RTF file. This file is simply opened using standard .NET framework methods and passed to the List & Label method.

// Open RTF file into myFileStream
LL.Variables.AddFromStream("RTF", myFileStream, LlFieldType.RTF)


Overloaded functions for Stream and TextReader types are available in order to pass large amounts of data.

IDKBTE000523 KBTE000523