cef_pdf_print_callback_t

Callback structure for cef_browser_host_t::PrintToPDF. The functions of this structure will be called on the browser process UI thread.

Members

Variables

base
cef_base_ref_counted_t base;

Base structure.

on_pdf_print_finished
void function(cef_pdf_print_callback_t* self, const(cef_string_t)* path, int ok) nothrow on_pdf_print_finished;

Method that will be executed when the PDF printing has completed. |path| is the output path. |ok| will be true (1) if the printing completed successfully or false (0) otherwise.

Meta