clone method
Creates a copy of the StringList object.
return The newly created StringList object. throws DocumentException An error has occurred during Document Library execution.
Implementation
StringList clone() {
StringList clone = StringList();
var err = documentSDK.id3DocumentStringList_CopyTo(_pHandle.value, clone.handle);
if (err != DocumentError.success.value) {
throw DocumentException(err);
}
return clone;
}