StringDict.set Method¶
Module: StringDict
Definition¶
Sets an item of the StringDict object.
set(self, key: str, item: str) -> None
Parameters
key
strin Unique key of the item to set.item
strin item to set.
Exceptions
An error has occurred during Document Library execution.
void set(String? key, String? item)
Parameters
key
Stringin Unique key of the item to set.item
Stringin item to set.
Exceptions
An error has occurred during Document Library execution.
public void Set(string key, string item)
Parameters
key
stringin Unique key of the item to set.item
stringin item to set.
Exceptions
An error has occurred during Document Library execution.
public void set(String key, String item) throws DocumentException
Parameters
key
Stringin Unique key of the item to set.item
Stringin item to set.
Exceptions
An error has occurred during Document Library execution.
public func set(key: String, item: String) throws
Parameters
key
Stringin Unique key of the item to set.item
Stringin item to set.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentStringDict_Set (
ID3_DOCUMENT_STRING_DICT hStringDict,
const char * key,
const char * item)
Parameters
hStringDict
ID3_DOCUMENT_STRING_DICTin Handle to the StringDict object.key
const char *in Unique key of the item to set.item
const char *in item to set.
Returns