xtd - Reference Guide
0.1.2
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
dot_matrix_style.h
Go to the documentation of this file.
1
4
#pragma once
5
#include <
xtd/ustring.h
>
6
8
namespace
xtd
{
10
namespace
forms
{
17
enum class
dot_matrix_style
{
19
round
,
21
square
,
23
standard
=
round
,
24
};
25
27
inline
std::ostream& operator<<(std::ostream& os,
dot_matrix_style
value) {
return
os <<
to_string
(value, {{
dot_matrix_style::standard
,
"standard"
}, {
dot_matrix_style::square
,
"square"
}});}
28
inline
std::wostream& operator<<(std::wostream& os,
dot_matrix_style
value) {
return
os <<
to_string
(value, {{
dot_matrix_style::standard
, L
"standard"
}, {
dot_matrix_style::square
, L
"square"
}});}
30
}
31
}
xtd::to_string
std::string to_string(const value_t &value, const std::string &fmt, const std::locale &loc)
Convert a specified value into a string with specified format and locale.
Definition
to_string.h:37
xtd::forms::dot_matrix_style
dot_matrix_style
Represent dot matrix style used by dot_matrix_display control.
Definition
dot_matrix_style.h:17
xtd::forms::dialog_style::standard
@ standard
Standard style dialog.
xtd::forms::dot_matrix_style::square
@ square
Square dot matrix style.
xtd::forms::dot_matrix_style::round
@ round
Round dot matrix style.
xtd::forms::dot_matrix_style::standard
@ standard
Standard (or round) dot matrix style.
xtd::forms
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition
about_box.h:13
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
system_report.h:17
ustring.h
Contains xtd::ustring class.
Generated on Tue Mar 12 2024 16:25:08 for xtd - Reference Guide by
Gammasoft
. All rights reserved.