Table of Contents

CreateOutStream Procedure

Codeunit Temp Blob

Creates an OutStream object with default encoding for the TempBlob. This enables you to write data to the TempBlob.

Overloads

Name Description
CreateOutStream(): OutStream Creates an OutStream object with default encoding for the TempBlob. This enables you to write data to the TempBlob.
CreateOutStream(OutStream) Creates an OutStream object with default encoding for the TempBlob. This enables you to write data to the TempBlob.
CreateOutStream(OutStream; TextEncoding) Creates an OutStream object with the specified encoding for the TempBlob. This enables you to write data to the TempBlob.
CreateOutStream(TextEncoding): OutStream Creates an OutStream object with the specified encoding for the TempBlob. This enables you to write data to the TempBlob.

CreateOutStream() Procedure

Creates an OutStream object with default encoding for the TempBlob. This enables you to write data to the TempBlob.

Signature

CreateOutStream() OutStream: OutStream

Returns

OutStream

The OutStream variable passed which the BLOB content will be attached.

CreateOutStream(OutStream) Procedure

Creates an OutStream object with default encoding for the TempBlob. This enables you to write data to the TempBlob.

Signature

CreateOutStream(var OutStream: OutStream)

Parameters

var OutStream OutStream

The OutStream variable passed as a VAR to which the BLOB content will be attached.

CreateOutStream(OutStream; TextEncoding) Procedure

Creates an OutStream object with the specified encoding for the TempBlob. This enables you to write data to the TempBlob.

Signature

CreateOutStream(var OutStream: OutStream; Encoding: TextEncoding)

Parameters

var OutStream OutStream

The OutStream variable passed as a VAR to which the BLOB content will be attached.

Encoding TextEncoding

The text encoding to use.

CreateOutStream(TextEncoding) Procedure

Creates an OutStream object with the specified encoding for the TempBlob. This enables you to write data to the TempBlob.

Signature

CreateOutStream(Encoding: TextEncoding) OutStream: OutStream

Parameters

Encoding TextEncoding

The text encoding to use.

Returns

OutStream

The OutStream variable with the BLOB content attached.

This documentation is generated from Smart Toolbox v27.1