StringList.set Method¶
Module: StringList
Definition¶
Sets an item of the StringList object.
set(self, index: int, item: str) -> None
Parameters
index
intin Index of the item to set.item
strin item to set.
Exceptions
An error has occurred during Devices Library execution.
void set(int index, String? item)
Parameters
index
intin Index of the item to set.item
Stringin item to set.
Exceptions
An error has occurred during Devices Library execution.
public void Set(int index, string item)
Parameters
index
intin Index of the item to set.item
stringin item to set.
Exceptions
An error has occurred during Devices Library execution.
public void set(int index, String item) throws DevicesException
Parameters
index
intin Index of the item to set.item
Stringin item to set.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesStringList_Set (
ID3_DEVICES_STRING_LIST hStringList,
int index,
const char * item)
Parameters
hStringList
ID3_DEVICES_STRING_LISTin Handle to the StringList object.index
intin Index of the item to set.item
const char *in item to set.
Returns