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

impl Copy for Options
[src]

impl Clone for Options
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Options

impl Sync for Options