Back to product page

Text property (StreamBlob)


Holds the text contents of the Blob.

Type

A String value. Contents of the Blob.

Syntax

  • Basic
object.Text [= value]
The Text (object,value) syntax has these parts:
objectAn expression evaluating to an object of type StreamBlob.
valueA String value.

Remarks

The Text property is used to set and retrieve data into/from the stream Blob. You should use it when you need to store text-only data which is suitable for use as-is. If you need to import binary data into the Blob, you may prefer to use the FromHex and FromBase64 methods.

The amount of data contained in the Blob is not limited - only your memory or programming environment may limit the String size.

Reading or writing to this property internally reads and writes data to underlying Stream.

Platforms

Windows