StringDict.add Method¶
Module: StringDict
Definition¶
Adds an item to the StringDict object.
add(self, key: str, item: str) -> None
Parameters
key
strin Unique key of the item to add.item
strin item to add.
Exceptions
An error has occurred during Document Library execution.
void add(String? key, String? item)
Parameters
key
Stringin Unique key of the item to add.item
Stringin item to add.
Exceptions
An error has occurred during Document Library execution.
public void Add(string key, string item)
Parameters
key
stringin Unique key of the item to add.item
stringin item to add.
Exceptions
An error has occurred during Document Library execution.
public void add(String key, String item) throws DocumentException
Parameters
key
Stringin Unique key of the item to add.item
Stringin item to add.
Exceptions
An error has occurred during Document Library execution.
public func add(key: String, item: String) throws
Parameters
key
Stringin Unique key of the item to add.item
Stringin item to add.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentStringDict_Add (
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 add.item
const char *in item to add.
Returns