Control.FocusMode/focusMode - multiple declarations
Function Control.focusMode
The focus access mode for the control (None, Click or All). Only one Control can be focused at the same time, and it will receive keyboard signals.
Control . FocusMode focusMode() nothrow @property @nogc;
void focusMode
(
long v
) nothrow @property @nogc;
Enum Control.FocusMode
enum FocusMode
: int { ... }
Enum members
Name | Description |
---|---|
focusAll
|
The node can grab focus on mouse click or using the arrows and the Tab keys on the keyboard. Use with focusMode .
|
focusClick
|
The node can only grab focus on mouse clicks. Use with focusMode .
|
focusNone
|
The node cannot grab focus. Use with focusMode .
|