removeAt method

void removeAt(
  1. int index
)

Removes an element of the TextFieldList object.

param index Index of the TextField item to remove. throws DocumentException An error has occurred during Document Library execution.

Implementation

void removeAt(int index) {
  var err = documentSDK.id3DocumentTextFieldList_RemoveAt(_pHandle.value, index);
  if (err != DocumentError.success.value) {
    throw DocumentException(err);
  }
}