32    inline std::ostream& operator<<(std::ostream& os, 
form_start_position value) {
return os << 
to_string(value, {{
form_start_position::manual, 
"manual"}, {
form_start_position::center_screen, 
"center_screen"}, {
form_start_position::windows_default_location, 
"windows_default_location"}, {
form_start_position::windows_default_bounds, 
"windows_default_bounds"}, {
form_start_position::center_parent, 
"center_parent"}});}
 
   33    inline std::wostream& operator<<(std::wostream& os, 
form_start_position value) {
return os << 
to_string(value, {{
form_start_position::manual, L
"manual"}, {
form_start_position::center_screen, L
"center_screen"}, {
form_start_position::windows_default_location, L
"windows_default_location"}, {
form_start_position::windows_default_bounds, L
"windows_default_bounds"}, {
form_start_position::center_parent, L
"center_parent"}});}
 
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.