ImageDict.containsKey Method

Module: ImageDict

Definition

Determines whether the ImageDictobject contains the specified key.

contains_key(self, key: str) -> bool

Parameters

key str
in The key to locate in the Image object.

Returns

bool
true if the Image object contains an element with the specified key, otherwise false.

Exceptions

An error has occurred during Face Library execution.
bool containsKey(String? key)

Parameters

key String
in The key to locate in the Image object.

Returns

bool
true if the Image 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

key string
in The key to locate in the Image object.

Returns

bool
true if the Image 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

key String
in The key to locate in the Image object.

Returns

boolean
true if the Image 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

key String
in The key to locate in the Image object.

Returns

Bool
true if the Image object contains an element with the specified key, otherwise false.

Exceptions

An error has occurred during Face Library execution.
int id3FaceImageDict_ContainsKey (
    ID3_FACE_IMAGE_DICT hImageDict,
    const char * key,
    bool * result)

Parameters

in Handle to the ImageDict object.

key const char *
in The key to locate in the Image object.

result bool *
out true if the Image object contains an element with the specified key, otherwise false.

Returns

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