get_element( )

Retrieves a single byte from the blob data.

Interface

AGDBBlob

IDL definition
nometadata void get_element(
  unsigned long index,
  PODSVariant variant
);
ADO equivalent

None

JavaScript synopsis
blob[index]
C synopsis
void AVget_element(
  AGDBBlob* blob,
  PODSUInt32 index,
  PODSVariant* variant
);
Parameters
  • blob   The AGDBBlob object.

  • index   [in] The index of the byte to retrieve.

  • variant   [in] The variant into which to return the byte.

Returns

None

See also

set_element( )