IntList.get Method

Module: IntList

Definition

Gets an item of the IntList object.

get(self, index: int) -> int

Parameters

index int
in Index of the item to get.

Returns

int
item to get.

Exceptions

An error has occurred during Finger Library execution.
int get(int index)

Parameters

index int
in Index of the item to get.

Returns

int
item to get.

Exceptions

An error has occurred during Finger Library execution.
public int Get(int index)

Parameters

index int
in Index of the item to get.

Returns

int
item to get.

Exceptions

An error has occurred during Finger Library execution.
public int get(int index) throws FingerException

Parameters

index int
in Index of the item to get.

Returns

int
item to get.

Exceptions

An error has occurred during Finger Library execution.
public func get(index: Int32) throws -> Int32

Parameters

index Int32
in Index of the item to get.

Returns

Int
item to get.

Exceptions

An error has occurred during Finger Library execution.
int id3FingerIntList_Get (
    ID3_FINGER_INT_LIST hIntList,
    int index,
    int * item)

Parameters

in Handle to the IntList object.

index int
in Index of the item to get.

item int *
out item to get.

Returns

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