FingerTemplateRecord Class¶
Namespace: id3.Finger
Definition¶
class FingerTemplateRecord
class FingerTemplateRecord implements Finalizable
public partial class FingerTemplateRecord
public class FingerTemplateRecord implements AutoCloseable, Serializable
public class FingerTemplateRecord
typedef struct id3FingerTemplateRecord *ID3_FINGER_TEMPLATE_RECORD;
Usage¶
fingerTemplateRecordInstance = FingerTemplateRecord()
# ...
Explicit destruction
# ...
del fingerTemplateRecordInstance
final fingerTemplateRecordInstance = sdk.FingerTemplateRecord();
// ...
Explicit destruction
// ...
fingerTemplateRecordInstance.dispose()
using (var fingerTemplateRecordInstance = new FingerTemplateRecord())
{
// ...
}
Explicit destruction
var fingerTemplateRecordInstance = new FingerTemplateRecord()
// ...
fingerTemplateRecordInstance.Dispose()
try (FingerTemplateRecord fingerTemplateRecordInstance = new FingerTemplateRecord()) {
// ...
}
Explicit destruction
FingerTemplateRecord fingerTemplateRecordInstance = new FingerTemplateRecord();
// ...
fingerTemplateRecordInstance.close();
private var fingerTemplateRecordInstance: FingerTemplateRecord? = nil
fingerTemplateRecordInstance = try FingerTemplateRecord()
ID3_FINGER_TEMPLATE_RECORD hFingerTemplateRecord{};
int err = id3FingerTemplateRecord_Initialize(&hFingerTemplateRecord);
if (err == ID3_SUCCESS) {
// ...
id3FingerTemplateRecord_Dispose(&hFingerTemplateRecord);
}
Properties¶
Name |
Type |
Description |
---|---|---|
int |
Gets the number of elements contained in the list |
|
operator [int index] |
Gets or sets the element at the specified index in the list. |
Iteration¶
This class supports iteration in Dart, C#, Java and Python.
Static Methods¶
Name |
Description |
---|---|
Imports the finger template record object from a buffer. |
|
Imports the finger template record object from a file. |
Methods¶
Name |
Description |
---|---|
Adds an item to the FingerTemplateRecord object. |
|
Clears the FingerTemplateRecord object. |
|
Clones the FingerTemplateRecord object. |
|
Gets an item of the FingerTemplateRecord object. |
|
Gets the number of elements in the FingerTemplateRecord object. |
|
Removes an element of the FingerTemplateRecord object. |
|
FingerTemplateRecord object. |
|
Sets an item of the FingerTemplateRecord object. |
|
Exports the finger template object to a buffer. |
|
Exports the finger template record object to a file. |