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

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

Per-window sciter engine options.

Used by Window::set_options().

See also global options.

Variants

Enable smooth scrolling, enabled by default.

Font rendering, value: 0 - system default, 1 - no smoothing, 2 - standard smoothing, 3 - ClearType.

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

Transparent windows support. When enabled, window uses per pixel alpha (e.g. WS_EX_LAYERED window).

global or per-window; enables Sciter Inspector for all windows, must be called before loading HTML.

global or per-window; value: combination of SCRIPT_RUNTIME_FEATURES flags.

Trait Implementations

impl Copy for Options
[src]

impl Clone for Options
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Options

impl Sync for Options