Enum sciter::window::Options [] [src]

pub enum Options {
    SmoothScroll(bool),
    FontSmoothing(u8),
    TransparentWindow(bool),
    AlphaWindow(bool),
}

Per-window sciter engine options.

Variants

value: true to enable, false to disable, enabled by default.

value: 0 - system default, 1 - no smoothing, 2 - standard smoothing, 3 - clear type.

Windows Aero support, value: false - normal drawing, true - window has transparent background after calls DwmExtendFrameIntoClientArea() or DwmEnableBlurBehindWindow().

value - TRUE/FALSE - window uses per pixel alpha (e.g. WS_EX_LAYERED/UpdateLayeredWindow() window).

Trait Implementations

Auto Trait Implementations

impl Send for Options

impl Sync for Options