EmbeddedFilesProvider

Handles all embedded files related operations on the owning document. Retrieve it with getEmbeddedFilesProvider.

Functions

Link copied to clipboard
abstract fun getEmbeddedFiles(includeFileAnnotations: Boolean): List<EmbeddedFile>
Returns the list of embedded files in the document.
Link copied to clipboard
abstract fun getEmbeddedFilesAsync(includeFileAnnotations: Boolean): Single<List<EmbeddedFile>>
Returns the list of embedded files in the document, async.
Link copied to clipboard
abstract fun getEmbeddedFileWithFileNameAsync(@NonNull fileName: String, includeFileAnnotations: Boolean): Maybe<EmbeddedFile>
Returns embedded file with file name if it exists, asynchronously.
Link copied to clipboard
abstract fun getEmbeddedFileWithIdAsync(@NonNull id: String, includeFileAnnotations: Boolean): Maybe<EmbeddedFile>
Returns embedded file with given identifier if it exists, asynchronously.