Field.getBinaryAtIndex Method

Module: Field

Definition

Gets the binary data at the specified index.

get_binary_at_index(self, index: int) -> bytearray

Parameters

index int
in 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 int
in 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 int
in 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 int
in 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 Int32
in 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

in Handle to the Field object.

index int
in 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

int
An error code.
See id3BiosealError file for the list of possible error codes.