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