PointList.get Method¶
Module: PointList
Definition¶
Gets an item of the PointList object.
get(self, index: int) -> Point
Parameters
index
intin Index of the Point item to get.
Returns
Point item to get.
Exceptions
An error has occurred during Finger Library execution.
Point get(int index)
Parameters
index
intin Index of the Point item to get.
Returns
Point item to get.
Exceptions
An error has occurred during Finger Library execution.
public Point Get(int index)
Parameters
index
intin Index of the Point item to get.
Returns
Point item to get.
Exceptions
An error has occurred during Finger Library execution.
public Point get(int index) throws FingerException
Parameters
index
intin Index of the Point item to get.
Returns
Point item to get.
Exceptions
An error has occurred during Finger Library execution.
public func get(index: Int32) throws -> Point
Parameters
index
Int32in Index of the Point item to get.
Returns
Point item to get.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerPointList_Get (
ID3_FINGER_POINT_LIST hPointList,
int index,
id3FingerPoint * sPointItem)
Parameters
hPointList
ID3_FINGER_POINT_LISTin Handle to the PointList object.index
intin Index of the Point item to get.sPointItem
id3FingerPoint *out Point item to get.
Returns