Package com.pspdfkit.ui
Interface PdfThumbnailGrid.OnDocumentSavedListener
-
- All Implemented Interfaces:
public interface PdfThumbnailGrid.OnDocumentSavedListener
Listener for document saving inside PdfThumbnailGrid. Document is being saved after clicking on the "Save" or "Save As" buttons inside DocumentEditingToolbar when document editing mode is active.
-
-
Method Summary
Modifier and Type Method Description abstract void
onDocumentSaved()
Called when saving a document in place is complete. abstract void
onDocumentExported(@NonNull() Uri destinationUri)
Called when saving a document or exporting pages to a given destination is complete. -
-
Method Detail
-
onDocumentSaved
abstract void onDocumentSaved()
Called when saving a document in place is complete.
-
onDocumentExported
abstract void onDocumentExported(@NonNull() Uri destinationUri)
Called when saving a document or exporting pages to a given destination is complete.
- Parameters:
destinationUri
- Destination Uri to which the document was saved.
-
-
-
-