IntList.set Method

Module: IntList

Definition

Sets an item of the IntList object.

set(self, index: int, item: int) -> None

Parameters

index int
in Index of the item to set.

item int
in item to set.

Exceptions

An error has occurred during Finger Library execution.
void set(int index, int item)

Parameters

index int
in Index of the item to set.

item int
in item to set.

Exceptions

An error has occurred during Finger Library execution.
public void Set(int index, int item)

Parameters

index int
in Index of the item to set.

item int
in item to set.

Exceptions

An error has occurred during Finger Library execution.
public void set(int index, int item) throws FingerException

Parameters

index int
in Index of the item to set.

item int
in item to set.

Exceptions

An error has occurred during Finger Library execution.
public func set(index: Int32, item: Int32) throws

Parameters

index Int32
in Index of the item to set.

item Int32
in item to set.

Exceptions

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

Parameters

in Handle to the IntList object.

index int
in Index of the item to set.

item int
in item to set.

Returns

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