StringDict.add Method¶
Module: StringDict
Definition¶
Adds an item to the StringDict object.
add(self, key: str, item: str) -> None
Parameters
keystrin Unique key of the item to add.itemstrin item to add.
Exceptions
An error has occurred during Document Library execution.
void add(String? key, String? item)
Parameters
keyStringin Unique key of the item to add.itemStringin item to add.
Exceptions
An error has occurred during Document Library execution.
public void Add(string key, string item)
Parameters
keystringin Unique key of the item to add.itemstringin item to add.
Exceptions
An error has occurred during Document Library execution.
public void add(String key, String item) throws DocumentException
Parameters
keyStringin Unique key of the item to add.itemStringin item to add.
Exceptions
An error has occurred during Document Library execution.
public func add(key: String, item: String) throws
Parameters
keyStringin Unique key of the item to add.itemStringin 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
hStringDictID3_DOCUMENT_STRING_DICTin Handle to the StringDict object.keyconst char *in Unique key of the item to add.itemconst char *in item to add.
Returns