Back to product page
Text property (MemBlob)
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:
The Text(object,value) syntax has these parts:
object | An expression evaluating to an object of type MemBlob. |
value | A String value. |
Remarks
The Text property is used to set and retrieve data into/from the memory 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.