DocumentInfoDictionary.add Method¶
Module: DocumentInfoDictionary
Definition¶
Adds an item to the DocumentInfoDictionary object.
add(self, key: str, document_info_item: DocumentInfo) -> None
Parameters
key
strin Unique key of the DocumentInfo item to add.document_info_item
DocumentInfoin DocumentInfo item to add.
Exceptions
An error has occurred during Document Library execution.
void add(String? key, DocumentInfo documentInfoItem)
Parameters
key
Stringin Unique key of the DocumentInfo item to add.documentInfoItem
DocumentInfoin DocumentInfo item to add.
Exceptions
An error has occurred during Document Library execution.
public void Add(string key, DocumentInfo documentInfoItem)
Parameters
key
stringin Unique key of the DocumentInfo item to add.documentInfoItem
DocumentInfoin DocumentInfo item to add.
Exceptions
An error has occurred during Document Library execution.
public void add(String key, DocumentInfo documentInfoItem) throws DocumentException
Parameters
key
Stringin Unique key of the DocumentInfo item to add.documentInfoItem
DocumentInfoin DocumentInfo item to add.
Exceptions
An error has occurred during Document Library execution.
public func add(key: String, documentInfoItem: DocumentInfo) throws
Parameters
key
Stringin Unique key of the DocumentInfo item to add.documentInfoItem
DocumentInfoin DocumentInfo item to add.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentInfoDictionary_Add (
ID3_DOCUMENT_INFO_DICTIONARY hDocumentInfoDictionary,
const char * key,
ID3_DOCUMENT_INFO hDocumentInfoItem)
Parameters
hDocumentInfoDictionary
ID3_DOCUMENT_INFO_DICTIONARYin Handle to the DocumentInfoDictionary object.key
const char *in Unique key of the DocumentInfo item to add.hDocumentInfoItem
ID3_DOCUMENT_INFOin DocumentInfo item to add.
Returns