add method

void add(
  1. TextField textFieldItem
)

Adds an item to the TextFieldList object.

param textFieldItem TextField item to add. throws DocumentException An error has occurred during Document Library execution.

Implementation

void add(TextField textFieldItem) {
  var err = documentSDK.id3DocumentTextFieldList_Add(_pHandle.value, textFieldItem.handle);
  if (err != DocumentError.success.value) {
    throw DocumentException(err);
  }
}