Description
-
Imports base64 encoded data into the Blob.
Return Type
-
None
Syntax
-
object.FromBase64 Data
The FromBase64 Method syntax has these parts:
| object |
An expression
evaluating to an object of type FileBlob. |
| Data |
Required. A String
value. Contains BASE64 encoded data. |
Remarks
-
WARNING: you should not use this method with
large files, or large amounts of data!
The FromBase64 method will import BASE64 encoded data into
the Blob. This can be data generated by the ToBase64 method,
or data from another source.
Example of use:
Dim b As New FileBlob
b.FromBase64 ("c29tZXRleHQ=")
Debug.Print b
result:
sometext
|