WindowCaptureType
Electron APIs / recorder / WindowCaptureType
type WindowCaptureType = "Auto" | "BitBlt" | "WGC";
Type of window capture method.
| Value | Description |
|---|---|
'Auto' | Automatically select the best window capture method. |
'BitBlt' | Use BitBlt (Bit Block Transfer), a legacy GDI-based capture method. May be less performant. |
'WGC' | Use Windows Graphics Capture (WGC), available on Windows 10+ with improved performance and stability. |