Field.getBinaryAtIndex Method¶
Module: Field
Definition¶
Gets the binary data at the specified index.
get_binary_at_index(self, index: int) -> bytearray
Parameters
index
intin The index of the binary field to retrieve.
Returns
bytearray
The binary data.
Exceptions
An error has occurred during Bioseal Library execution.
Uint8List getBinaryAtIndex(int index)
Parameters
index
intin The index of the binary field to retrieve.
Returns
Uint8List
The binary data.
Exceptions
An error has occurred during Bioseal Library execution.
public byte[] GetBinaryAtIndex(int index)
Parameters
index
intin The index of the binary field to retrieve.
Returns
byte[]
The binary data.
Exceptions
An error has occurred during Bioseal Library execution.
public byte[] getBinaryAtIndex(int index) throws BiosealException
Parameters
index
intin The index of the binary field to retrieve.
Returns
byte[]
The binary data.
Exceptions
An error has occurred during Bioseal Library execution.
public func getBinaryAtIndex(index: Int32) throws -> [UInt8]
Parameters
index
Int32in The index of the binary field to retrieve.
Returns
[UInt8]
The binary data.
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealField_GetBinaryAtIndex (
ID3_BIOSEAL_FIELD hField,
int index,
unsigned char * item,
int * itemSize)
Parameters
hField
ID3_BIOSEAL_FIELDin Handle to the Field object.index
intin The index of the binary field to retrieve.item
unsigned char *out The binary data.itemSize
int *in Size of the ‘item’ buffer. Receives the number of elements in the ‘item’ array.
Returns