StringList.set Method¶
Module: StringList
Definition¶
Sets an item of the StringList object.
set(self, index: int, item: str) -> None
Parameters
indexintin Index of the item to set.itemstrin item to set.
Exceptions
An error has occurred during Document Library execution.
void set(int index, String? item)
Parameters
indexintin Index of the item to set.itemStringin item to set.
Exceptions
An error has occurred during Document Library execution.
public void Set(int index, string item)
Parameters
indexintin Index of the item to set.itemstringin item to set.
Exceptions
An error has occurred during Document Library execution.
public void set(int index, String item) throws DocumentException
Parameters
indexintin Index of the item to set.itemStringin item to set.
Exceptions
An error has occurred during Document Library execution.
public func set(index: Int32, item: String) throws
Parameters
indexInt32in Index of the item to set.itemStringin item to set.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentStringList_Set (
ID3_DOCUMENT_STRING_LIST hStringList,
int index,
const char * item)
Parameters
hStringListID3_DOCUMENT_STRING_LISTin Handle to the StringList object.indexintin Index of the item to set.itemconst char *in item to set.
Returns