StringDict.containsKey Method¶
Module: StringDict
Definition¶
Determines whether the StringDictobject contains the specified key.
contains_key(self, key: str) -> bool
Parameters
key
strin The key to locate in the object.
Returns
bool
true if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Document Library execution.
bool containsKey(String? key)
Parameters
key
Stringin The key to locate in the object.
Returns
bool
true if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Document Library execution.
public bool ContainsKey(string key)
Parameters
key
stringin The key to locate in the object.
Returns
bool
true if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Document Library execution.
public boolean containsKey(String key) throws DocumentException
Parameters
key
Stringin The key to locate in the object.
Returns
boolean
true if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Document Library execution.
public func containsKey(key: String) throws -> Bool
Parameters
key
Stringin The key to locate in the object.
Returns
Bool
true if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentStringDict_ContainsKey (
ID3_DOCUMENT_STRING_DICT hStringDict,
const char * key,
bool * result)
Parameters
hStringDict
ID3_DOCUMENT_STRING_DICTin Handle to the StringDict object.key
const char *in The key to locate in the object.result
bool *out true if the object contains an element with the specified key, otherwise false.
Returns