Property | Type | Description | |
---|---|---|---|
GetConsoleMode | int | ||
GetStdHandle | |||
SetConsoleMode | int |
Method | Description | |
---|---|---|
ErrorFreeSetting ( ) : bool |
Check if error in setting.
|
|
IsSet ( int flag ) : int |
Check if flag set in Current Mode.
|
|
SetConsole ( ) : bool |
Apply console settings in specific order.
|
|
SettingCommand ( string command, int option ) : bool |
Setting Command preset or specified values.
|
|
SettingPresetGroup ( int option ) : bool |
Setting Preset Group options for window, buffer and other values.
|
|
ShowStatus ( ) : bool |
Show console status.
|
|
TrueParse ( string s, int &result ) : bool |
Parse true and false to int result.
|
Method | Description | |
---|---|---|
GetConsoleMode ( |
||
GetStdHandle ( int stdHandle ) : |
||
SetConsoleMode ( |
public IsSet ( int flag ) : int | ||
flag | int | /// The console flag, e.g. ENABLE_QUICK_EDIT_MODE, ENABLE_INSERT_MODE. /// See http://msdn.microsoft.com/en-us/library/ms686033%28VS.85%29.aspx /// |
return | int |
public SettingCommand ( string command, int option ) : bool | ||
command | string | /// The command. /// |
option | int | /// The option. /// |
return | bool |
public SettingPresetGroup ( int option ) : bool | ||
option | int | /// preset option 0|1|2|3 /// |
return | bool |
public static TrueParse ( string s, int &result ) : bool | ||
s | string | /// Parse the strings "true" or "t" and "false" or "f", case insensitive. /// |
result | int | /// Set result out equal to 1 if true, or equal to Int16.MaxValue if false. /// |
return | bool |