Table of Contents

Interface IWebViewFactory

Namespace
Playnite.SDK
Assembly
Playnite.SDK.dll

Describes web view factory provider.

public interface IWebViewFactory

Methods

CreateOffscreenView()

Creates new offscreen web view.

IWebView CreateOffscreenView()

Returns

IWebView

Offscreen web view.

CreateOffscreenView(WebViewSettings)

Creates new offscreen web view with specific settings.

IWebView CreateOffscreenView(WebViewSettings settings)

Parameters

settings WebViewSettings

Browser view settings.

Returns

IWebView

CreateView(WebViewSettings)

Creates new web view.

IWebView CreateView(WebViewSettings settings)

Parameters

settings WebViewSettings

Browser view settings.

Returns

IWebView

CreateView(int, int)

Creates new web view.

IWebView CreateView(int width, int height)

Parameters

width int

View widht.

height int

View height.

Returns

IWebView

Web view.

CreateView(int, int, Color)

Creates new web view.

IWebView CreateView(int width, int height, Color background)

Parameters

width int

View widht.

height int

View height.

background Color

View background color.

Returns

IWebView

Web view.