COREWEBVIEW2_COLOR

A value representing RGBA color (Red, Green, Blue, Alpha) for WebView2. Each component takes a value from 0 to 255, with 0 being no intensity and 255 being the highest intensity.

version(Windows && inline_webview2_bindings && all)
struct COREWEBVIEW2_COLOR {}

Members

Variables

A
BYTE A;

Specifies the intensity of the Alpha ie. opacity value. 0 is transparent, 255 is opaque.

B
BYTE B;

Specifies the intensity of the Blue color.

G
BYTE G;

Specifies the intensity of the Green color.

R
BYTE R;

Specifies the intensity of the Red color.

Meta