clear method
Clears the StringList object.
throws DocumentException An error has occurred during Document Library execution.
Implementation
void clear() {
var err = documentSDK.id3DocumentStringList_Clear(_pHandle.value);
if (err != DocumentError.success.value) {
throw DocumentException(err);
}
}