FaceTemplateDict.containsKey Method¶
Module: FaceTemplateDict
Definition¶
Determines whether the FaceTemplateDictobject contains the specified key.
contains_key(self, key: str) -> bool
Parameters
keystrin The key to locate in the FaceTemplate object.
Returns
booltrue if the FaceTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Face Library execution.
bool containsKey(String? key)
Parameters
keyStringin The key to locate in the FaceTemplate object.
Returns
booltrue if the FaceTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Face Library execution.
public bool ContainsKey(string key)
Parameters
keystringin The key to locate in the FaceTemplate object.
Returns
booltrue if the FaceTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Face Library execution.
public boolean containsKey(String key) throws FaceException
Parameters
keyStringin The key to locate in the FaceTemplate object.
Returns
booleantrue if the FaceTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Face Library execution.
public func containsKey(key: String) throws -> Bool
Parameters
keyStringin The key to locate in the FaceTemplate object.
Returns
Booltrue if the FaceTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Face Library execution.
int id3FaceTemplateDict_ContainsKey (
ID3_FACE_TEMPLATE_DICT hFaceTemplateDict,
const char * key,
bool * result)
Parameters
hFaceTemplateDictID3_FACE_TEMPLATE_DICTin Handle to the FaceTemplateDict object.keyconst char *in The key to locate in the FaceTemplate object.resultbool *out true if the FaceTemplate object contains an element with the specified key, otherwise false.
Returns