init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
namespace Cef3
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cef3.Interop;
|
||||
|
||||
/// <summary>
|
||||
/// Callback interface for asynchronous continuation of print dialog requests.
|
||||
/// </summary>
|
||||
public sealed unsafe partial class CefPrintDialogCallback
|
||||
{
|
||||
/// <summary>
|
||||
/// Continue printing with the specified |settings|.
|
||||
/// </summary>
|
||||
public void Continue(CefPrintSettings settings)
|
||||
{
|
||||
cef_print_dialog_callback_t.cont(_self, settings.ToNative());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Cancel the printing.
|
||||
/// </summary>
|
||||
public void Cancel()
|
||||
{
|
||||
cef_print_dialog_callback_t.cancel(_self);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user