36 inline std::ostream& operator<<(std::ostream& os,
form_border_style value) {
return os <<
to_string(value, {{
form_border_style::none,
"none"}, {
form_border_style::fixed_single,
"fixed_single"}, {
form_border_style::fixed_3d,
"fixed_3d"}, {
form_border_style::fixed_dialog,
"fixed_dialog"}, {
form_border_style::sizable,
"sizable"}, {
form_border_style::fixed_tool_window,
"fixed_tool_window"}, {
form_border_style::sizable_tool_window,
"sizable_tool_window"}});}
37 inline std::wostream& operator<<(std::wostream& os,
form_border_style value) {
return os <<
to_string(value, {{
form_border_style::none, L
"none"}, {
form_border_style::fixed_single, L
"fixed_single"}, {
form_border_style::fixed_3d, L
"fixed_3d"}, {
form_border_style::fixed_dialog, L
"fixed_dialog"}, {
form_border_style::sizable, L
"sizable"}, {
form_border_style::fixed_tool_window, L
"fixed_tool_window"}, {
form_border_style::sizable_tool_window, L
"sizable_tool_window"}});}
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
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17
Contains xtd::ustring class.