StringList.get Method¶
Module: StringList
Definition¶
Gets an item of the StringList object.
get(self, index: int) -> str
Parameters
indexintin Index of the item to get.
Returns
stritem to get.
Exceptions
An error has occurred during Document Library execution.
String get(int index)
Parameters
indexintin Index of the item to get.
Returns
Stringitem to get.
Exceptions
An error has occurred during Document Library execution.
public string Get(int index)
Parameters
indexintin Index of the item to get.
Returns
stringitem to get.
Exceptions
An error has occurred during Document Library execution.
public String get(int index) throws DocumentException
Parameters
indexintin Index of the item to get.
Returns
Stringitem to get.
Exceptions
An error has occurred during Document Library execution.
public func get(index: Int32) throws -> String
Parameters
indexInt32in Index of the item to get.
Returns
Stringitem to get.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentStringList_Get (
ID3_DOCUMENT_STRING_LIST hStringList,
int index,
char * item,
int * itemSize)
Parameters
hStringListID3_DOCUMENT_STRING_LISTin Handle to the StringList object.indexintin Index of the item to get.itemchar *out item to get.itemSizeint *in Size of the ‘item’ buffer. Receives the minimum required buffer size to hold the ‘item’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘item’ (excluding terminating NULL character).
Returns