set method

void set(
  1. int index,
  2. HologramAuthenticationResult hologramAuthenticationResultItem
)

Sets an item of the HologramAuthenticationResultList object.

param index Index of the HologramAuthenticationResult item to set. param hologramAuthenticationResultItem HologramAuthenticationResult item to set. throws DocumentException An error has occurred during Document Library execution.

Implementation

void set(int index, HologramAuthenticationResult hologramAuthenticationResultItem) {
  var err = documentSDK.id3DocumentHologramAuthenticationResultList_Set(_pHandle.value, index, hologramAuthenticationResultItem.handle);
  if (err != DocumentError.success.value) {
    throw DocumentException(err);
  }
}