Trait IClickConcept

pub trait IClickConcept: Inherits<Object> + Inherits<ClickConcept> {
    // Provided methods
    fn get_double_click_enabled(&self) -> Result<bool, Error> { ... }
    fn set_double_click_enabled(&self, value: bool) -> Result<(), Error> { ... }
}
Expand description

Use the %ClickConcept properties to control how nodes handle click and double-click.

To enable the click and double-click gestures for an Image node:

§Since

Kanzi 3.9.0

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§