Package com.pspdfkit.document.sharing
Interface SharingOptionsProvider
-
- All Implemented Interfaces:
public interface SharingOptionsProvider
Allows you to provide default share options when the user hits the share button in the toolbar.
-
-
Method Summary
Modifier and Type Method Description abstract SharingOptions
createSharingOptions(@NonNull() PdfDocument document, int currentPage)
Creates and returns the SharingOptions. -
-
Method Detail
-
createSharingOptions
@Nullable() abstract SharingOptions createSharingOptions(@NonNull() PdfDocument document, int currentPage)
Creates and returns the SharingOptions.
- Parameters:
document
- The document that is being shared.currentPage
- The page the user is currently on.- Returns:
The sharing options you wish to use for the share operation, or null to display the default sharing options dialog.
-
-
-
-