#[repr(i8)]pub enum ClickControlMode {
Inherit = -2,
Default = -1,
InsertionPoint = 0,
SelectThenInsert = 1,
}
Variants§
Inherit = -2
Use the same value as the client application design-time settings.
Default = -1
Use the client application default value.
InsertionPoint = 0
Select the control under the cursor, and set the insertion point under the cursor, both on the same click.
SelectThenInsert = 1
If the control under the cursor is already selected, set the insertion point under the cursor; otherwise, select the control.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClickControlMode
impl RefUnwindSafe for ClickControlMode
impl Send for ClickControlMode
impl Sync for ClickControlMode
impl Unpin for ClickControlMode
impl UnwindSafe for ClickControlMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more