xtd 0.2.0
Loading...
Searching...
No Matches
console_color.h
Go to the documentation of this file.
1
4#pragma once
5#include "enum.h"
6
8namespace xtd {
18 enum class console_color {
20 default_color = -1,
22 black,
36 gray,
40 blue,
42 green,
44 cyan,
46 red,
48 magenta,
50 yellow,
52 white
53 };
54}
55
57template<> struct xtd::enum_register<xtd::console_color> {
59};
Contains enum_ and enum_ut_ keywords.
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
console_color
Specifies constants that define foreground and background colors for the console.
Definition console_color.h:18
@ black
The color black.
@ dark_blue
The color dark blue.
@ blue
The color blue.
@ dark_gray
The color dark gray.
@ magenta
The color magenta (purplish red).
@ dark_green
The color dark green.
@ cyan
The color cyan (blue-green).
@ dark_red
The color dark red.
@ green
The color green.
@ dark_magenta
The color dark magenta (dark purplish-red).
@ red
The color red.
@ dark_cyan
The color dark cyan (dark blue-green).
@ gray
The color gray.
@ yellow
The color yellow.
@ white
The color white.
@ default_color
The default color.
@ dark_yellow
The color dark yellow (ochre).
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36