removeAt method
- int index
Removes an element of the HologramAuthenticationResultList object.
param index Index of the HologramAuthenticationResult item to remove. throws DocumentException An error has occurred during Document Library execution.
Implementation
void removeAt(int index) {
var err = documentSDK.id3DocumentHologramAuthenticationResultList_RemoveAt(_pHandle.value, index);
if (err != DocumentError.success.value) {
throw DocumentException(err);
}
}