Beispiel #1
0
 /// <summary>
 /// Set the size information of the webview application window.
 /// </summary>
 /// <param name="width">The width of the webview application window.</param>
 /// <param name="height">The height of the webview application window.</param>
 /// <param name="hint">The type of the size information.</param>
 /// <returns>The webview object for a fluent api.</returns>
 public Webview SetSize(int width, int height, WebviewHint hint)
 {
     Bindings.webview_set_size(_nativeWebview, width, height, hint);
     return(this);
 }
Beispiel #2
0
 internal extern static void webview_set_size(IntPtr webview, int width, int height, WebviewHint hint);