IntList.get Method¶
Module: IntList
Definition¶
Gets an item of the IntList object.
get(self, index: int) -> int
Parameters
index
intin 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
intin 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
intin 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
intin 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
Int32in 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
hIntList
ID3_FINGER_INT_LISTin Handle to the IntList object.index
intin Index of the item to get.item
int *out item to get.
Returns