get method

Field get(
  1. int index
)

Gets an item of the FieldList object.

param index Index of the Field item to get. return Field item to get. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

Field get(int index) {
  Field fieldItem = Field();
  var err = biosealSDK.id3BiosealFieldList_Get(_pHandle.value, index, fieldItem.handle);
  if (err != BiosealError.success.value) {
    fieldItem.dispose();
    throw BiosealException(err);
  }
  return fieldItem;
}