Esempio n. 1
0
        private int on_print_dialog(cef_print_handler_t *self, int has_selection, cef_print_dialog_callback_t *callback)
        {
            CheckSelf(self);

            CefPrintDialogCallback mCallback = CefPrintDialogCallback.FromNative(callback);

            return(OnPrintDialogDelegate(has_selection != 0, mCallback));
        }
Esempio n. 2
0
        private int on_print_dialog(cef_print_handler_t *self, int has_selection, cef_print_dialog_callback_t *callback)
        {
            CheckSelf(self);

            var m_callback = CefPrintDialogCallback.FromNative(callback);
            var m_result   = OnPrintDialog(has_selection != 0, m_callback);

            return(m_result ? 1 : 0);
        }