FieldList Class

Namespace: id3.Bioseal

Definition

Represents a list of Field objects.
class FieldList
class FieldList implements Finalizable
public partial class FieldList
public class FieldList implements AutoCloseable, Serializable
public class FieldList
typedef struct id3BiosealFieldList *ID3_BIOSEAL_FIELD_LIST;

Usage

fieldListInstance = id3bioseal.FieldList()

Explicit destruction

# ...
del fieldListInstance
final fieldListInstance = sdk.FieldList();
// ...

Explicit destruction

// ...
fieldListInstance.dispose()
using (var fieldListInstance = new FieldList())
{
   // ...
}

Explicit destruction

var fieldListInstance = new FieldList()
// ...
fieldListInstance.Dispose()
try (FieldList fieldListInstance = new FieldList()) {
// ...
}

Explicit destruction

FieldList fieldListInstance = new FieldList();
// ...
fieldListInstance.close();
private var fieldListInstance: FieldList? = nil
fieldListInstance = try FieldList()
ID3_BIOSEAL_FIELD_LIST hFieldList{};
int err = id3BiosealFieldList_Initialize(&hFieldList);
if (err == ID3_SUCCESS) {
    // ...
    id3BiosealFieldList_Dispose(&hFieldList);
}

Properties

Name

Type

Description

count

int

Gets the number of elements contained in the list

operator [int index]

Field

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

clear

Clear the list.

get

Gets an item of the FieldList object.

getCount

Gets the number of elements in the FieldList object.