Field.containsKey Method¶
Module: Field
Definition¶
Determines whether the Fieldobject contains the specified key.
contains_key(self, key: str) -> bool
Parameters
key
strin The key to locate in the Field object.
Returns
bool
true if the Field object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Bioseal Library execution.
bool containsKey(String? key)
Parameters
key
Stringin The key to locate in the Field object.
Returns
bool
true if the Field object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Bioseal Library execution.
public bool ContainsKey(string key)
Parameters
key
stringin The key to locate in the Field object.
Returns
bool
true if the Field object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Bioseal Library execution.
public boolean containsKey(String key) throws BiosealException
Parameters
key
Stringin The key to locate in the Field object.
Returns
boolean
true if the Field object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Bioseal Library execution.
public func containsKey(key: String) throws -> Bool
Parameters
key
Stringin The key to locate in the Field object.
Returns
Bool
true if the Field object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealField_ContainsKey (
ID3_BIOSEAL_FIELD hField,
const char * key,
bool * result)
Parameters
hField
ID3_BIOSEAL_FIELDin Handle to the Field object.key
const char *in The key to locate in the Field object.result
bool *out true if the Field object contains an element with the specified key, otherwise false.
Returns