Back to product page
FromArray method (FileBlob)
Imports the contents of a byte array into the Blob.
Type
NoneSyntax
- Basic
object.FromArray DataArray()
The FromArray(object,DataArray()) syntax has these parts:
The FromArray(object,DataArray()) syntax has these parts:
object | An expression evaluating to an object of type FileBlob. |
DataArray() | Required. An array of Byte values. The byte array that should be imported. |
Remarks
FromArray reads the contents of DataArray and imports it into the Blob. This is useful when the array contains binary data.DataArray argument is a Byte array - Byte() in VB, or SAFEARRAY FAR* (VT_UI1) in C++