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