ChromiumWebBrowserResizeAsync Method |
Version 104.4.240
Resize the browser
Namespace:
CefSharp.OffScreen
Assembly:
CefSharp.OffScreen (in CefSharp.OffScreen.dll) Version: 104.4.240.0 (104.4.240.0)
Syntax public Task ResizeAsync(
int width,
int height,
float? deviceScaleFactor = null
)
public:
Task^ ResizeAsync(
int width,
int height,
Nullable<float> deviceScaleFactor = nullptr
)
Parameters
- width
- Type: SystemInt32
width - height
- Type: SystemInt32
height - deviceScaleFactor (Optional)
- Type: SystemNullableSingle
device scale factor
Return Value
Type:
TaskA 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