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