ImageDict Class¶
Namespace: id3.Face
Definition¶
This class represents a ImageDict
class ImageDict
class ImageDict implements Finalizable
public partial class ImageDict
public class ImageDict implements AutoCloseable, Serializable
public class ImageDict
typedef struct id3FaceImageDict *ID3_FACE_IMAGE_DICT;
Usage¶
imageDictInstance = ImageDict()
# ...
Explicit destruction
# ...
del imageDictInstance
final imageDictInstance = sdk.ImageDict();
// ...
Explicit destruction
// ...
imageDictInstance.dispose()
using (var imageDictInstance = new ImageDict())
{
// ...
}
Explicit destruction
var imageDictInstance = new ImageDict()
// ...
imageDictInstance.Dispose()
try (ImageDict imageDictInstance = new ImageDict()) {
// ...
}
Explicit destruction
ImageDict imageDictInstance = new ImageDict();
// ...
imageDictInstance.close();
private var imageDictInstance: ImageDict? = nil
imageDictInstance = try ImageDict()
ID3_FACE_IMAGE_DICT hImageDict{};
int err = id3FaceImageDict_Initialize(&hImageDict);
if (err == ID3_SUCCESS) {
// ...
id3FaceImageDict_Dispose(&hImageDict);
}
Properties¶
Name |
Type |
Description |
---|---|---|
int |
Gets the number of elements contained in the dict |
|
Gets a string list containing the keys in the dict. |
||
operator [string key] |
Gets or sets the element for the key in the dict. |
Iteration¶
This class supports iteration in Dart, C#, Java and Python.
The iteration is done on keys
Methods¶
Name |
Description |
---|---|
Adds an item to the ImageDict object. |
|
Clears the ImageDict object. |
|
Clones the ImageDict object. |
|
Determines whether the ImageDictobject contains the specified key. |
|
Gets an item of the ImageDict object. |
|
Gets the number of elements in the ImageDict object. |
|
Removes an element of the ImageDict object. |
|
Sets an item of the ImageDict object. |