IMinute.StoreBlob Method

Writes a blob to a row to the specified column.
Sub StoreBlob( _ 
ByVal row As Integer, _ 
ByVal fieldMnemonic As String, _ 
ByVal blob As Byte(), _ 
Optional ByVal fileName As String = "" _ 
)
This language is not supported or no code example is available.
void StoreBlob( 
int row
string fieldMnemonic
byte[] blob
string fileName = "" 
)
This language is not supported or no code example is available.

Parameters

row
int

The row number in the minute (1 - 9999).

fieldMnemonic
string

The ID (mnemonic) of the field you want to store the blob to. Can be either a native field or a free field.

blob
byte[]

A byte array representing the file you want to store.

fileName
string

The name of the file to be stored to the blob. Applies only to free columns. For native fields: EmbeddedExcel, EmbeddedWord and SetImage, this parameter is ignored.

Exception type Condition

QdvApiException

A problem occurred.

Remarks
 

Native fields are:

EmbeddedExcel: The Excel workbook hosted in the row which is used to return values to the minute row.

EmbeddedWord: The word document hosted in the row (which is to be merged with calling word document).

SetImage: The information about the set, for headers of sets (contains input data for the set, etc.).

Version
 
Available since QDV 7.13.0001.

.NET Framework

Supported in: 4.8, 4.7, 4.6, 4.5.2

In this article

Definition