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