示例#1
0
 /// <summary>
 /// Show the print dialog.
 /// </summary>
 /// <param name="browser">The browser.</param>
 /// <param name="hasSelection"></param>
 /// <param name="callback">Execute <paramref name="callback"/>once the dialog is dismissed.</param>
 /// <returns>
 /// Return true if the dialog will be displayed or false to cancel the printing immediately.
 /// </returns>
 protected internal virtual bool OnPrintDialog(CefBrowser browser, bool hasSelection, CefPrintDialogCallback callback)
 {
     return(false);
 }
示例#2
0
 public override bool OnPrintDialog(CefBrowser browser, bool hasSelection, CefPrintDialogCallback callback)
 {
     return(_implementation.OnPrintDialog(browser, hasSelection, callback));
 }
示例#3
0
 protected internal unsafe override bool OnPrintDialog(CefBrowser browser, bool hasSelection, CefPrintDialogCallback callback)
 {
     return(_implementation.OnPrintDialog(browser, hasSelection, callback));
 }
示例#4
0
 protected override bool OnPrintDialog(CefBrowser browser, bool hasSelection, CefPrintDialogCallback callback)
 {
     return(true);
 }