GetBlobValue Procedure
Gets the Blob value as UTF8 encoded text.
Overloads
Name | Description |
---|---|
GetBlobValue(Text[100]): Text | Gets the Blob value as UTF8 encoded text. |
GetBlobValue(Text[100]; TextEncoding): Text | Gets the Blob value. |
GetBlobValue(Text[100]; TextEncoding; Codeunit "QWETB Temp Blob") | Gets the blob value. |
GetBlobValue(Text[100]; TextEncoding; Record "QWETB tTempBlob" temporary) | Gets the blob value. |
GetBlobValue(Text[100]) Procedure
Gets the Blob value as UTF8 encoded text.
Signature
GetBlobValue(Name: Text[100]) : Text
Parameters
Name
Text[100]
The name of the parameter.
Returns
Text
The UTF8 encoded value.
GetBlobValue(Text[100]; TextEncoding) Procedure
Gets the Blob value.
Signature
GetBlobValue(Name: Text[100]; Encoding: TextEncoding) : Text
Parameters
Name
Text[100]
The name of the parameter.
Encoding
TextEncoding
The encoding to be used.
Returns
Text
The value encoded in the provided encoding.
GetBlobValue(Text[100]; TextEncoding; Codeunit "QWETB Temp Blob") Procedure
Gets the blob value.
Signature
GetBlobValue(Name: Text[100]; Encoding: TextEncoding; var TempBlob: Codeunit "QWETB Temp Blob")
Parameters
Name
Text[100]
The name of the parameter.
Encoding
TextEncoding
The encoding to be used.
var TempBlob
Codeunit "QWETB Temp Blob"
The codeunit instance that the blob value will be saved in.
GetBlobValue(Text[100]; TextEncoding; Record "QWETB tTempBlob" temporary) Procedure
Gets the blob value.
Deprecated
This procedure is deprecated and should not be used.
Reason: Use the overload that takes Codeunit "QWETB Temp Blob" instead. It offers better performance.
Deprecated since: 27.0
Signature
[Obsolete('Use the overload that takes Codeunit "QWETB Temp Blob" instead. It offers better performance.', '27.0')]
GetBlobValue(Name: Text[100]; Encoding: TextEncoding; var TempBlob: Record "QWETB tTempBlob" temporary)
Parameters
Name
Text[100]
The name of the parameter.
Encoding
TextEncoding
The encoding to be used.
var TempBlob
Record "QWETB tTempBlob" temporary
The temp record that the blob value will be saved in.
This documentation is generated from Smart Toolbox v27.0