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

count

int

Gets the number of elements contained in the list

operator [int index]

FingerCaptureMode

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

add

Adds an item to the CaptureModeList object.

clear

Clears the CaptureModeList object.

get

Gets an item of the CaptureModeList object.

getCount

Gets the number of elements in the CaptureModeList object.

removeAt

Removes an element of the CaptureModeList object.

resize

CaptureModeList object.

set

Sets an item of the CaptureModeList object.