Click or drag to resize

ChromiumWebBrowserResizeAsync Method

Version 102.0.100
Resize the browser

Namespace:  CefSharp.OffScreen
Assembly:  CefSharp.OffScreen (in CefSharp.OffScreen.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public Task ResizeAsync(
	int width,
	int height,
	float? deviceScaleFactor = null
)

Parameters

width
Type: SystemInt32
width
height
Type: SystemInt32
height
deviceScaleFactor (Optional)
Type: SystemNullableSingle
device scale factor

Return Value

Type: Task
A task that can be awaited and will resolve when the desired size is achieved.
Remarks
The current implementation is fairly symplistic, it simply resizes the browser and resolves the task when the browser starts painting at the desired size.
See Also