StringDict.add Method

Module: StringDict

Definition

Adds an item to the StringDict object.

add(self, key: str, item: str) -> None

Parameters

key str
in Unique key of the item to add.

item str
in item to add.

Exceptions

An error has occurred during Document Library execution.
void add(String? key, String? item)

Parameters

key String
in Unique key of the item to add.

item String
in item to add.

Exceptions

An error has occurred during Document Library execution.
public void Add(string key, string item)

Parameters

key string
in Unique key of the item to add.

item string
in item to add.

Exceptions

An error has occurred during Document Library execution.
public void add(String key, String item) throws DocumentException

Parameters

key String
in Unique key of the item to add.

item String
in item to add.

Exceptions

An error has occurred during Document Library execution.
public func add(key: String, item: String) throws

Parameters

key String
in Unique key of the item to add.

item String
in 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

in Handle to the StringDict object.

key const char *
in Unique key of the item to add.

item const char *
in item to add.

Returns

int
An error code.
See id3DocumentError file for the list of possible error codes.