xtd - Reference Guide
0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Toggle main menu visibility
Home
Categories
Documentation
Namespaces
Classes
Class List
Class Index
Class Hierarchy
Files
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
border_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
{
18
enum class
border_style
{
20
none
= 0,
22
fixed_single
= 1,
24
fixed_3d
= 2,
25
};
26
28
inline
std::ostream& operator<<(std::ostream& os,
border_style
value) {
return
os <<
to_string
(value, {{
border_style::none
,
"none"
}, {
border_style::fixed_single
,
"fixed_single"
}, {
border_style::fixed_3d
,
"fixed_3"
}});}
29
inline
std::wostream& operator<<(std::wostream& os,
border_style
value) {
return
os <<
to_string
(value, {{
border_style::none
, L
"none"
}, {
border_style::fixed_single
, L
"fixed_single"
}, {
border_style::fixed_3d
, L
"fixed_3d"
}});}
31
}
32
}
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::border_style
border_style
Specifies the border style for a control.
Definition:
border_style.h:18
xtd::forms::border_style::none
@ none
No border.
xtd::forms::border_style::fixed_3d
@ fixed_3d
A three-dimensional border.
xtd::forms::border_style::fixed_single
@ fixed_single
A single-line border.
xtd::forms::anchor_styles::none
@ none
The cause of the closure was not defined or could not be determined.
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 Sat Jan 28 2023 18:12:25 for xtd - Reference Guide by
Gammasoft
. All rights reserved.