xtd 0.2.0
Loading...
Searching...
No Matches

◆ console_special_key

enum class xtd::console_special_key
strong

Specifies combinations of modifier and console keys that can interrupt the current process.

Header
#include <xtd/console_special_key>
Namespace
xtd
Library
xtd.core
Remarks
The ConsoleCancelEventArgs::SpecialKey property returns the console_special_key enumeration type.
Simultaneously pressing certain key combinations signals the operating system to interrupt the currently running process. The two valid key combinations are console_modifiers::control plus BREAK (CTRL+BREAK) and console_modifiers::Control plus console_key.c (CTRL+C).
Enumerator
control_break 

The console_modifiers::control modifier key plus the BREAK console key.

control_c 

The console_modifiers::control modifier key plus the console_key C console key.

control_backslash 

The console_modifiers::control modifier key plus the console_key \ console key.

control_z 

The console_modifiers::control modifier key plus the console_key Z console key.