IntList.set Method¶
Module: IntList
Definition¶
Sets an item of the IntList object.
set(self, index: int, item: int) -> None
Parameters
index
intin Index of the item to set.item
intin item to set.
Exceptions
An error has occurred during Finger Library execution.
void set(int index, int item)
Parameters
index
intin Index of the item to set.item
intin item to set.
Exceptions
An error has occurred during Finger Library execution.
public void Set(int index, int item)
Parameters
index
intin Index of the item to set.item
intin item to set.
Exceptions
An error has occurred during Finger Library execution.
public void set(int index, int item) throws FingerException
Parameters
index
intin Index of the item to set.item
intin item to set.
Exceptions
An error has occurred during Finger Library execution.
public func set(index: Int32, item: Int32) throws
Parameters
index
Int32in Index of the item to set.item
Int32in 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
hIntList
ID3_FINGER_INT_LISTin Handle to the IntList object.index
intin Index of the item to set.item
intin item to set.
Returns