CaptureModeList Class¶
Namespace: id3.FingerCapture
Definition¶
Defines all available capture modes that can be used for capturing fingerprints.
class CaptureModeList
class CaptureModeList implements Finalizable
public partial class CaptureModeList
typedef struct id3FingerCaptureCaptureModeList *ID3_FINGER_CAPTURE_CAPTURE_MODE_LIST;
Usage¶
captureModeListInstance = CaptureModeList()
# ...
Explicit destruction
# ...
del captureModeListInstance
final captureModeListInstance = sdk.CaptureModeList();
// ...
Explicit destruction
// ...
captureModeListInstance.dispose()
using (var captureModeListInstance = new CaptureModeList())
{
// ...
}
Explicit destruction
var captureModeListInstance = new CaptureModeList()
// ...
captureModeListInstance.Dispose()
ID3_FINGER_CAPTURE_CAPTURE_MODE_LIST hCaptureModeList{};
int err = id3FingerCaptureCaptureModeList_Initialize(&hCaptureModeList);
if (err == ID3_SUCCESS) {
// ...
id3FingerCaptureCaptureModeList_Dispose(&hCaptureModeList);
}
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.
Methods¶
Name |
Description |
---|---|
Adds an item to the CaptureModeList object. |
|
Clears the CaptureModeList object. |
|
Gets an item of the CaptureModeList object. |
|
Gets the number of elements in the CaptureModeList object. |
|
Removes an element of the CaptureModeList object. |
|
CaptureModeList object. |
|
Sets an item of the CaptureModeList object. |