xtd 1.0.0
Loading...
Searching...
No Matches
xtd::forms::countries Class Referencefinal
Inheritance diagram for xtd::forms::countries:
xtd::static_object

Definition

Provides a collection of xtd::forms::country for all countries in the world. This class cannot be inherited.

Header
#include <xtd/forms/countries>
Namespace
xtd::forms
Library
xtd.forms
Examples
The following code example demonstrates the use of countries component.
#include <xtd/xtd>
namespace countries_example {
class main_form : public form {
public:
static auto main() {
//locale::global(locale {"fr_FR.utf-8"});
application::run(main_form());
}
main_form() {
text("Countries example");
client_size({600, 500});
countries_list_box.parent(*this);
countries_list_box.location({10, 10});
countries_list_box.size({200, 480});
countries_list_box.anchor(anchor_styles::left | anchor_styles::top | anchor_styles::bottom);
for (auto country : countries::get_countries())
countries_list_box.items().add({country.name(), country});
countries_list_box.sorted(true);
countries_list_box.selected_value_changed += delegate_ {
country_flag_picture_box.image(bitmap(as<forms::country>(countries_list_box.selected_item().tag()).flag(), {256, 192}));
country_flag_squared_picture_box.image(bitmap(as<forms::country>(countries_list_box.selected_item().tag()).flag_squared(), {128, 128}));
country_emoticon_label.text(as<forms::country>(countries_list_box.selected_item().tag()).emoticon());
country_code_label.text(string::format("Codes : {} ({}) / {}", as<forms::country>(countries_list_box.selected_item().tag()).alpha_3_code(), as<forms::country>(countries_list_box.selected_item().tag()).alpha_2_code(), as<forms::country>(countries_list_box.selected_item().tag()).numeric_code()));
};
countries_list_box.selected_item(countries::belgium().name());
country_panel.parent(*this);
country_panel.location({220, 10});
country_panel.size({370, 480});
country_panel.anchor(anchor_styles::left | anchor_styles::top | anchor_styles::right | anchor_styles::bottom);
country_panel.border_style(forms::border_style::fixed_3d);
country_panel.back_color(system_colors::window());
country_panel.auto_scroll(true);
country_flag_picture_box.parent(country_panel);
country_flag_picture_box.location({10, 10});
country_flag_picture_box.size({256, 192});
country_flag_squared_picture_box.parent(country_panel);
country_flag_squared_picture_box.location({10, 212});
country_flag_squared_picture_box.size({128, 128});
country_emoticon_label.flat_style(xtd::forms::flat_style::system);
country_emoticon_label.parent(country_panel);
country_emoticon_label.font({country_emoticon_label.font(), 64});
country_emoticon_label.location({10, 350});
country_emoticon_label.auto_size(true);
country_code_label.parent(country_panel);
country_code_label.location({10, 445});
country_code_label.auto_size(true);
}
private:
list_box countries_list_box;
panel country_panel;
picture_box country_flag_picture_box;
picture_box country_flag_squared_picture_box;
label country_emoticon_label;
label country_code_label;
};
}
startup_(countries_example::main_form::main);
static auto run() -> void
Begins running a standard application message loop on the current thread, without a form.
Represents a window or dialog box that makes up an application's user interface.
Definition form.hpp:54
#define delegate_
The declaration of a delegate type is similar to a method signature. It has a return value and any nu...
Definition delegate.hpp:1018
#define startup_(...)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.hpp:284
xtd::forms::style_sheets::control label
The label data allows you to specify the box of a label control.
Definition label.hpp:25
xtd::forms::style_sheets::control panel
The panel data allows you to specify the box of a panel control.
Definition panel.hpp:25
auto name() noexcept -> xtd::string
Gets the thread name of the current thread.
@ system
The appearance of the control is determined by the user's operating system.
Definition flat_style.hpp:32
Contains classes that represent ASCII and Unicode character encodings; abstract base classes for conv...
Definition basic_string_builder.hpp:13

Public Static Properties

static auto afghanistan () -> xtd::forms::country
 A system-defined country object.
static auto aland_islands () -> xtd::forms::country
 A system-defined country object.
static auto albania () -> xtd::forms::country
 A system-defined country object.
static auto algeria () -> xtd::forms::country
 A system-defined country object.
static auto american_samoa () -> xtd::forms::country
 A system-defined country object.
static auto andorra () -> xtd::forms::country
 A system-defined country object.
static auto angola () -> xtd::forms::country
 A system-defined country object.
static auto anguilla () -> xtd::forms::country
 A system-defined country object.
static auto antarctica () -> xtd::forms::country
 A system-defined country object.
static auto antigua_and_barbuda () -> xtd::forms::country
 A system-defined country object.
static auto argentina () -> xtd::forms::country
 A system-defined country object.
static auto armenia () -> xtd::forms::country
 A system-defined country object.
static auto aruba () -> xtd::forms::country
 A system-defined country object.
static auto australia () -> xtd::forms::country
 A system-defined country object.
static auto austria () -> xtd::forms::country
 A system-defined country object.
static auto azerbaijan () -> xtd::forms::country
 A system-defined country object.
static auto bahamas () -> xtd::forms::country
 A system-defined country object.
static auto bahrain () -> xtd::forms::country
 A system-defined country object.
static auto bangladesh () -> xtd::forms::country
 A system-defined country object.
static auto barbados () -> xtd::forms::country
 A system-defined country object.
static auto belarus () -> xtd::forms::country
 A system-defined country object.
static auto belgium () -> xtd::forms::country
 A system-defined country object.
static auto belize () -> xtd::forms::country
 A system-defined country object.
static auto benin () -> xtd::forms::country
 A system-defined country object.
static auto bermuda () -> xtd::forms::country
 A system-defined country object.
static auto bhutan () -> xtd::forms::country
 A system-defined country object.
static auto bolivia () -> xtd::forms::country
 A system-defined country object.
static auto bonaire_sint_eustatius_and_saba () -> xtd::forms::country
 A system-defined country object.
static auto bosnia_and_herzegovina () -> xtd::forms::country
 A system-defined country object.
static auto botswana () -> xtd::forms::country
 A system-defined country object.
static auto bouvet_island () -> xtd::forms::country
 A system-defined country object.
static auto brazil () -> xtd::forms::country
 A system-defined country object.
static auto british_indian_ocean_territory () -> xtd::forms::country
 A system-defined country object.
static auto brunei_darussalam () -> xtd::forms::country
 A system-defined country object.
static auto bulgaria () -> xtd::forms::country
 A system-defined country object.
static auto burkina_faso () -> xtd::forms::country
 A system-defined country object.
static auto burundi () -> xtd::forms::country
 A system-defined country object.
static auto cabo_verde () -> xtd::forms::country
 A system-defined country object.
static auto cambodia () -> xtd::forms::country
 A system-defined country object.
static auto cameroon () -> xtd::forms::country
 A system-defined country object.
static auto canada () -> xtd::forms::country
 A system-defined country object.
static auto cayman_islands () -> xtd::forms::country
 A system-defined country object.
static auto central_african_republic () -> xtd::forms::country
 A system-defined country object.
static auto chad () -> xtd::forms::country
 A system-defined country object.
static auto chile () -> xtd::forms::country
 A system-defined country object.
static auto china () -> xtd::forms::country
 A system-defined country object.
static auto christmas_island () -> xtd::forms::country
 A system-defined country object.
static auto cocos_keeling_islands () -> xtd::forms::country
 A system-defined country object.
static auto colombia () -> xtd::forms::country
 A system-defined country object.
static auto comoros () -> xtd::forms::country
 A system-defined country object.
static auto congo () -> xtd::forms::country
 A system-defined country object.
static auto democratic_republic_of_the_congo () -> xtd::forms::country
 A system-defined country object.
static auto cook_islands () -> xtd::forms::country
 A system-defined country object.
static auto costa_rica () -> xtd::forms::country
 A system-defined country object.
static auto cote_d_ivoire () -> xtd::forms::country
 A system-defined country object.
static auto croatia () -> xtd::forms::country
 A system-defined country object.
static auto cuba () -> xtd::forms::country
 A system-defined country object.
static auto curacao () -> xtd::forms::country
 A system-defined country object.
static auto cyprus () -> xtd::forms::country
 A system-defined country object.
static auto czechia () -> xtd::forms::country
 A system-defined country object.
static auto denmark () -> xtd::forms::country
 A system-defined country object.
static auto djibouti () -> xtd::forms::country
 A system-defined country object.
static auto dominica () -> xtd::forms::country
 A system-defined country object.
static auto dominican_republic () -> xtd::forms::country
 A system-defined country object.
static auto ecuador () -> xtd::forms::country
 A system-defined country object.
static auto egypt () -> xtd::forms::country
 A system-defined country object.
static auto el_salvador () -> xtd::forms::country
 A system-defined country object.
static auto equatorial_guinea () -> xtd::forms::country
 A system-defined country object.
static auto eritrea () -> xtd::forms::country
 A system-defined country object.
static auto estonia () -> xtd::forms::country
 A system-defined country object.
static auto eswatini () -> xtd::forms::country
 A system-defined country object.
static auto ethiopia () -> xtd::forms::country
 A system-defined country object.
static auto falkland_islands () -> xtd::forms::country
 A system-defined country object.
static auto faroe_islands () -> xtd::forms::country
 A system-defined country object.
static auto fiji () -> xtd::forms::country
 A system-defined country object.
static auto finland () -> xtd::forms::country
 A system-defined country object.
static auto france () -> xtd::forms::country
 A system-defined country object.
static auto french_guiana () -> xtd::forms::country
 A system-defined country object.
static auto french_polynesia () -> xtd::forms::country
 A system-defined country object.
static auto french_southern_territories () -> xtd::forms::country
 A system-defined country object.
static auto gabon () -> xtd::forms::country
 A system-defined country object.
static auto gambia () -> xtd::forms::country
 A system-defined country object.
static auto georgia () -> xtd::forms::country
 A system-defined country object.
static auto germany () -> xtd::forms::country
 A system-defined country object.
static auto ghana () -> xtd::forms::country
 A system-defined country object.
static auto gibraltar () -> xtd::forms::country
 A system-defined country object.
static auto greece () -> xtd::forms::country
 A system-defined country object.
static auto greenland () -> xtd::forms::country
 A system-defined country object.
static auto grenada () -> xtd::forms::country
 A system-defined country object.
static auto guadeloupe () -> xtd::forms::country
 A system-defined country object.
static auto guam () -> xtd::forms::country
 A system-defined country object.
static auto guatemala () -> xtd::forms::country
 A system-defined country object.
static auto guernsey () -> xtd::forms::country
 A system-defined country object.
static auto guinea () -> xtd::forms::country
 A system-defined country object.
static auto guinea_bissau () -> xtd::forms::country
 A system-defined country object.
static auto guyana () -> xtd::forms::country
 A system-defined country object.
static auto haiti () -> xtd::forms::country
 A system-defined country object.
static auto heard_island_and_mcdonald_islands () -> xtd::forms::country
 A system-defined country object.
static auto holy_see () -> xtd::forms::country
 A system-defined country object.
static auto honduras () -> xtd::forms::country
 A system-defined country object.
static auto hong_kong () -> xtd::forms::country
 A system-defined country object.
static auto hungary () -> xtd::forms::country
 A system-defined country object.
static auto iceland () -> xtd::forms::country
 A system-defined country object.
static auto india () -> xtd::forms::country
 A system-defined country object.
static auto indonesia () -> xtd::forms::country
 A system-defined country object.
static auto iran () -> xtd::forms::country
 A system-defined country object.
static auto iraq () -> xtd::forms::country
 A system-defined country object.
static auto ireland () -> xtd::forms::country
 A system-defined country object.
static auto isle_of_man () -> xtd::forms::country
 A system-defined country object.
static auto israel () -> xtd::forms::country
 A system-defined country object.
static auto italy () -> xtd::forms::country
 A system-defined country object.
static auto jamaica () -> xtd::forms::country
 A system-defined country object.
static auto japan () -> xtd::forms::country
 A system-defined country object.
static auto jersey () -> xtd::forms::country
 A system-defined country object.
static auto jordan () -> xtd::forms::country
 A system-defined country object.
static auto kazakhstan () -> xtd::forms::country
 A system-defined country object.
static auto kenya () -> xtd::forms::country
 A system-defined country object.
static auto kiribati () -> xtd::forms::country
 A system-defined country object.
static auto north_korea () -> xtd::forms::country
 A system-defined country object.
static auto south_korea () -> xtd::forms::country
 A system-defined country object.
static auto kuwait () -> xtd::forms::country
 A system-defined country object.
static auto kyrgyzstan () -> xtd::forms::country
 A system-defined country object.
static auto lao_people_s_democratic_republic () -> xtd::forms::country
 A system-defined country object.
static auto latvia () -> xtd::forms::country
 A system-defined country object.
static auto lebanon () -> xtd::forms::country
 A system-defined country object.
static auto lesotho () -> xtd::forms::country
 A system-defined country object.
static auto liberia () -> xtd::forms::country
 A system-defined country object.
static auto libya () -> xtd::forms::country
 A system-defined country object.
static auto liechtenstein () -> xtd::forms::country
 A system-defined country object.
static auto lithuania () -> xtd::forms::country
 A system-defined country object.
static auto luxembourg () -> xtd::forms::country
 A system-defined country object.
static auto macao () -> xtd::forms::country
 A system-defined country object.
static auto madagascar () -> xtd::forms::country
 A system-defined country object.
static auto malawi () -> xtd::forms::country
 A system-defined country object.
static auto malaysia () -> xtd::forms::country
 A system-defined country object.
static auto maldives () -> xtd::forms::country
 A system-defined country object.
static auto mali () -> xtd::forms::country
 A system-defined country object.
static auto malta () -> xtd::forms::country
 A system-defined country object.
static auto marshall_islands () -> xtd::forms::country
 A system-defined country object.
static auto martinique () -> xtd::forms::country
 A system-defined country object.
static auto mauritania () -> xtd::forms::country
 A system-defined country object.
static auto mauritius () -> xtd::forms::country
 A system-defined country object.
static auto mayotte () -> xtd::forms::country
 A system-defined country object.
static auto mexico () -> xtd::forms::country
 A system-defined country object.
static auto federated_states_of_micronesia () -> xtd::forms::country
 A system-defined country object.
static auto moldova () -> xtd::forms::country
 A system-defined country object.
static auto monaco () -> xtd::forms::country
 A system-defined country object.
static auto mongolia () -> xtd::forms::country
 A system-defined country object.
static auto montenegro () -> xtd::forms::country
 A system-defined country object.
static auto montserrat () -> xtd::forms::country
 A system-defined country object.
static auto morocco () -> xtd::forms::country
 A system-defined country object.
static auto mozambique () -> xtd::forms::country
 A system-defined country object.
static auto myanmar () -> xtd::forms::country
 A system-defined country object.
static auto namibia () -> xtd::forms::country
 A system-defined country object.
static auto nauru () -> xtd::forms::country
 A system-defined country object.
static auto nepal () -> xtd::forms::country
 A system-defined country object.
static auto netherlands () -> xtd::forms::country
 A system-defined country object.
static auto new_caledonia () -> xtd::forms::country
 A system-defined country object.
static auto new_zealand () -> xtd::forms::country
 A system-defined country object.
static auto nicaragua () -> xtd::forms::country
 A system-defined country object.
static auto niger () -> xtd::forms::country
 A system-defined country object.
static auto nigeria () -> xtd::forms::country
 A system-defined country object.
static auto niue () -> xtd::forms::country
 A system-defined country object.
static auto norfolk_island () -> xtd::forms::country
 A system-defined country object.
static auto north_macedonia () -> xtd::forms::country
 A system-defined country object.
static auto northern_mariana_islands () -> xtd::forms::country
 A system-defined country object.
static auto norway () -> xtd::forms::country
 A system-defined country object.
static auto oman () -> xtd::forms::country
 A system-defined country object.
static auto pakistan () -> xtd::forms::country
 A system-defined country object.
static auto palau () -> xtd::forms::country
 A system-defined country object.
static auto state_of_palestine () -> xtd::forms::country
 A system-defined country object.
static auto panama () -> xtd::forms::country
 A system-defined country object.
static auto papua_new_guinea () -> xtd::forms::country
 A system-defined country object.
static auto paraguay () -> xtd::forms::country
 A system-defined country object.
static auto peru () -> xtd::forms::country
 A system-defined country object.
static auto philippines () -> xtd::forms::country
 A system-defined country object.
static auto pitcairn () -> xtd::forms::country
 A system-defined country object.
static auto poland () -> xtd::forms::country
 A system-defined country object.
static auto portugal () -> xtd::forms::country
 A system-defined country object.
static auto puerto_rico () -> xtd::forms::country
 A system-defined country object.
static auto qatar () -> xtd::forms::country
 A system-defined country object.
static auto reunion () -> xtd::forms::country
 A system-defined country object.
static auto romania () -> xtd::forms::country
 A system-defined country object.
static auto russian_federation () -> xtd::forms::country
 A system-defined country object.
static auto rwanda () -> xtd::forms::country
 A system-defined country object.
static auto saint_barthelemy () -> xtd::forms::country
 A system-defined country object.
static auto saint_helena_ascension_and_tristan_da_cunha () -> xtd::forms::country
 A system-defined country object.
static auto saint_kitts_and_nevis () -> xtd::forms::country
 A system-defined country object.
static auto saint_lucia () -> xtd::forms::country
 A system-defined country object.
static auto saint_martin_french_part () -> xtd::forms::country
 A system-defined country object.
static auto saint_pierre_and_miquelon () -> xtd::forms::country
 A system-defined country object.
static auto saint_vincent_and_the_grenadines () -> xtd::forms::country
 A system-defined country object.
static auto samoa () -> xtd::forms::country
 A system-defined country object.
static auto san_marino () -> xtd::forms::country
 A system-defined country object.
static auto sao_tome_and_principe () -> xtd::forms::country
 A system-defined country object.
static auto saudi_arabia () -> xtd::forms::country
 A system-defined country object.
static auto senegal () -> xtd::forms::country
 A system-defined country object.
static auto serbia () -> xtd::forms::country
 A system-defined country object.
static auto seychelles () -> xtd::forms::country
 A system-defined country object.
static auto sierra_leone () -> xtd::forms::country
 A system-defined country object.
static auto singapore () -> xtd::forms::country
 A system-defined country object.
static auto sint_maarten_dutch_part () -> xtd::forms::country
 A system-defined country object.
static auto slovakia () -> xtd::forms::country
 A system-defined country object.
static auto slovenia () -> xtd::forms::country
 A system-defined country object.
static auto solomon_islands () -> xtd::forms::country
 A system-defined country object.
static auto somalia () -> xtd::forms::country
 A system-defined country object.
static auto south_africa () -> xtd::forms::country
 A system-defined country object.
static auto south_georgia_and_the_south_sandwich_islands () -> xtd::forms::country
 A system-defined country object.
static auto south_sudan () -> xtd::forms::country
 A system-defined country object.
static auto spain () -> xtd::forms::country
 A system-defined country object.
static auto sri_lanka () -> xtd::forms::country
 A system-defined country object.
static auto sudan () -> xtd::forms::country
 A system-defined country object.
static auto suriname () -> xtd::forms::country
 A system-defined country object.
static auto svalbard_and_jan_mayen () -> xtd::forms::country
 A system-defined country object.
static auto sweden () -> xtd::forms::country
 A system-defined country object.
static auto switzerland () -> xtd::forms::country
 A system-defined country object.
static auto syrian_arab_republic () -> xtd::forms::country
 A system-defined country object.
static auto taiwan_china () -> xtd::forms::country
 A system-defined country object.
static auto tajikistan () -> xtd::forms::country
 A system-defined country object.
static auto tanzania () -> xtd::forms::country
 A system-defined country object.
static auto thailand () -> xtd::forms::country
 A system-defined country object.
static auto timor_leste () -> xtd::forms::country
 A system-defined country object.
static auto togo () -> xtd::forms::country
 A system-defined country object.
static auto tokelau () -> xtd::forms::country
 A system-defined country object.
static auto tonga () -> xtd::forms::country
 A system-defined country object.
static auto trinidad_and_tobago () -> xtd::forms::country
 A system-defined country object.
static auto tunisia () -> xtd::forms::country
 A system-defined country object.
static auto turkey () -> xtd::forms::country
 A system-defined country object.
static auto turkmenistan () -> xtd::forms::country
 A system-defined country object.
static auto turks_and_caicos_islands () -> xtd::forms::country
 A system-defined country object.
static auto tuvalu () -> xtd::forms::country
 A system-defined country object.
static auto uganda () -> xtd::forms::country
 A system-defined country object.
static auto ukraine () -> xtd::forms::country
 A system-defined country object.
static auto united_arab_emirates () -> xtd::forms::country
 A system-defined country object.
static auto united_kingdom_of_great_britain_and_northern_ireland () -> xtd::forms::country
 A system-defined country object.
static auto united_states_of_america () -> xtd::forms::country
 A system-defined country object.
static auto united_states_minor_outlying_islands () -> xtd::forms::country
 A system-defined country object.
static auto uruguay () -> xtd::forms::country
 A system-defined country object.
static auto uzbekistan () -> xtd::forms::country
 A system-defined country object.
static auto vanuatu () -> xtd::forms::country
 A system-defined country object.
static auto venezuela () -> xtd::forms::country
 A system-defined country object.
static auto viet_nam () -> xtd::forms::country
 A system-defined country object.
static auto british_virgin_islands () -> xtd::forms::country
 A system-defined country object.
static auto united_states_virgin_islands () -> xtd::forms::country
 A system-defined country object.
static auto wallis_and_futuna () -> xtd::forms::country
 A system-defined country object.
static auto western_sahara () -> xtd::forms::country
 A system-defined country object.
static auto yemen () -> xtd::forms::country
 A system-defined country object.
static auto zambia () -> xtd::forms::country
 A system-defined country object.
static auto zimbabwe () -> xtd::forms::country
 A system-defined country object.

Public Static Methods

static auto get_countries () -> const xtd::array< xtd::forms::country > &
 Gets countries collection.

Member Function Documentation

◆ afghanistan()

auto xtd::forms::countries::afghanistan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ aland_islands()

auto xtd::forms::countries::aland_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ albania()

auto xtd::forms::countries::albania ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ algeria()

auto xtd::forms::countries::algeria ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ american_samoa()

auto xtd::forms::countries::american_samoa ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ andorra()

auto xtd::forms::countries::andorra ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ angola()

auto xtd::forms::countries::angola ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ anguilla()

auto xtd::forms::countries::anguilla ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ antarctica()

auto xtd::forms::countries::antarctica ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ antigua_and_barbuda()

auto xtd::forms::countries::antigua_and_barbuda ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ argentina()

auto xtd::forms::countries::argentina ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ armenia()

auto xtd::forms::countries::armenia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ aruba()

auto xtd::forms::countries::aruba ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ australia()

auto xtd::forms::countries::australia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ austria()

auto xtd::forms::countries::austria ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ azerbaijan()

auto xtd::forms::countries::azerbaijan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bahamas()

auto xtd::forms::countries::bahamas ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bahrain()

auto xtd::forms::countries::bahrain ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bangladesh()

auto xtd::forms::countries::bangladesh ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ barbados()

auto xtd::forms::countries::barbados ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ belarus()

auto xtd::forms::countries::belarus ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ belgium()

auto xtd::forms::countries::belgium ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ belize()

auto xtd::forms::countries::belize ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ benin()

auto xtd::forms::countries::benin ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bermuda()

auto xtd::forms::countries::bermuda ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bhutan()

auto xtd::forms::countries::bhutan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bolivia()

auto xtd::forms::countries::bolivia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bonaire_sint_eustatius_and_saba()

auto xtd::forms::countries::bonaire_sint_eustatius_and_saba ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bosnia_and_herzegovina()

auto xtd::forms::countries::bosnia_and_herzegovina ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ botswana()

auto xtd::forms::countries::botswana ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bouvet_island()

auto xtd::forms::countries::bouvet_island ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ brazil()

auto xtd::forms::countries::brazil ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ british_indian_ocean_territory()

auto xtd::forms::countries::british_indian_ocean_territory ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ brunei_darussalam()

auto xtd::forms::countries::brunei_darussalam ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ bulgaria()

auto xtd::forms::countries::bulgaria ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ burkina_faso()

auto xtd::forms::countries::burkina_faso ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ burundi()

auto xtd::forms::countries::burundi ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cabo_verde()

auto xtd::forms::countries::cabo_verde ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cambodia()

auto xtd::forms::countries::cambodia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cameroon()

auto xtd::forms::countries::cameroon ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ canada()

auto xtd::forms::countries::canada ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cayman_islands()

auto xtd::forms::countries::cayman_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ central_african_republic()

auto xtd::forms::countries::central_african_republic ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ chad()

auto xtd::forms::countries::chad ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ chile()

auto xtd::forms::countries::chile ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ china()

auto xtd::forms::countries::china ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ christmas_island()

auto xtd::forms::countries::christmas_island ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cocos_keeling_islands()

auto xtd::forms::countries::cocos_keeling_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ colombia()

auto xtd::forms::countries::colombia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ comoros()

auto xtd::forms::countries::comoros ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ congo()

auto xtd::forms::countries::congo ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ democratic_republic_of_the_congo()

auto xtd::forms::countries::democratic_republic_of_the_congo ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cook_islands()

auto xtd::forms::countries::cook_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ costa_rica()

auto xtd::forms::countries::costa_rica ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cote_d_ivoire()

auto xtd::forms::countries::cote_d_ivoire ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ croatia()

auto xtd::forms::countries::croatia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cuba()

auto xtd::forms::countries::cuba ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ curacao()

auto xtd::forms::countries::curacao ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ cyprus()

auto xtd::forms::countries::cyprus ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ czechia()

auto xtd::forms::countries::czechia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ denmark()

auto xtd::forms::countries::denmark ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ djibouti()

auto xtd::forms::countries::djibouti ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ dominica()

auto xtd::forms::countries::dominica ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ dominican_republic()

auto xtd::forms::countries::dominican_republic ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ ecuador()

auto xtd::forms::countries::ecuador ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ egypt()

auto xtd::forms::countries::egypt ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ el_salvador()

auto xtd::forms::countries::el_salvador ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ equatorial_guinea()

auto xtd::forms::countries::equatorial_guinea ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ eritrea()

auto xtd::forms::countries::eritrea ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ estonia()

auto xtd::forms::countries::estonia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ eswatini()

auto xtd::forms::countries::eswatini ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ ethiopia()

auto xtd::forms::countries::ethiopia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ falkland_islands()

auto xtd::forms::countries::falkland_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ faroe_islands()

auto xtd::forms::countries::faroe_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ fiji()

auto xtd::forms::countries::fiji ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ finland()

auto xtd::forms::countries::finland ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ france()

auto xtd::forms::countries::france ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ french_guiana()

auto xtd::forms::countries::french_guiana ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ french_polynesia()

auto xtd::forms::countries::french_polynesia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ french_southern_territories()

auto xtd::forms::countries::french_southern_territories ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ gabon()

auto xtd::forms::countries::gabon ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ gambia()

auto xtd::forms::countries::gambia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ georgia()

auto xtd::forms::countries::georgia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ germany()

auto xtd::forms::countries::germany ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ ghana()

auto xtd::forms::countries::ghana ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ gibraltar()

auto xtd::forms::countries::gibraltar ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ greece()

auto xtd::forms::countries::greece ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ greenland()

auto xtd::forms::countries::greenland ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ grenada()

auto xtd::forms::countries::grenada ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ guadeloupe()

auto xtd::forms::countries::guadeloupe ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ guam()

auto xtd::forms::countries::guam ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ guatemala()

auto xtd::forms::countries::guatemala ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ guernsey()

auto xtd::forms::countries::guernsey ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ guinea()

auto xtd::forms::countries::guinea ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ guinea_bissau()

auto xtd::forms::countries::guinea_bissau ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ guyana()

auto xtd::forms::countries::guyana ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ haiti()

auto xtd::forms::countries::haiti ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ heard_island_and_mcdonald_islands()

auto xtd::forms::countries::heard_island_and_mcdonald_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ holy_see()

auto xtd::forms::countries::holy_see ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ honduras()

auto xtd::forms::countries::honduras ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ hong_kong()

auto xtd::forms::countries::hong_kong ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ hungary()

auto xtd::forms::countries::hungary ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ iceland()

auto xtd::forms::countries::iceland ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ india()

auto xtd::forms::countries::india ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ indonesia()

auto xtd::forms::countries::indonesia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ iran()

auto xtd::forms::countries::iran ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ iraq()

auto xtd::forms::countries::iraq ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ ireland()

auto xtd::forms::countries::ireland ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ isle_of_man()

auto xtd::forms::countries::isle_of_man ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ israel()

auto xtd::forms::countries::israel ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ italy()

auto xtd::forms::countries::italy ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ jamaica()

auto xtd::forms::countries::jamaica ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ japan()

auto xtd::forms::countries::japan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ jersey()

auto xtd::forms::countries::jersey ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ jordan()

auto xtd::forms::countries::jordan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ kazakhstan()

auto xtd::forms::countries::kazakhstan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ kenya()

auto xtd::forms::countries::kenya ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ kiribati()

auto xtd::forms::countries::kiribati ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ north_korea()

auto xtd::forms::countries::north_korea ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ south_korea()

auto xtd::forms::countries::south_korea ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ kuwait()

auto xtd::forms::countries::kuwait ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ kyrgyzstan()

auto xtd::forms::countries::kyrgyzstan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ lao_people_s_democratic_republic()

auto xtd::forms::countries::lao_people_s_democratic_republic ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ latvia()

auto xtd::forms::countries::latvia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ lebanon()

auto xtd::forms::countries::lebanon ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ lesotho()

auto xtd::forms::countries::lesotho ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ liberia()

auto xtd::forms::countries::liberia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ libya()

auto xtd::forms::countries::libya ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ liechtenstein()

auto xtd::forms::countries::liechtenstein ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ lithuania()

auto xtd::forms::countries::lithuania ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ luxembourg()

auto xtd::forms::countries::luxembourg ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ macao()

auto xtd::forms::countries::macao ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ madagascar()

auto xtd::forms::countries::madagascar ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ malawi()

auto xtd::forms::countries::malawi ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ malaysia()

auto xtd::forms::countries::malaysia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ maldives()

auto xtd::forms::countries::maldives ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ mali()

auto xtd::forms::countries::mali ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ malta()

auto xtd::forms::countries::malta ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ marshall_islands()

auto xtd::forms::countries::marshall_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ martinique()

auto xtd::forms::countries::martinique ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ mauritania()

auto xtd::forms::countries::mauritania ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ mauritius()

auto xtd::forms::countries::mauritius ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ mayotte()

auto xtd::forms::countries::mayotte ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ mexico()

auto xtd::forms::countries::mexico ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ federated_states_of_micronesia()

auto xtd::forms::countries::federated_states_of_micronesia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ moldova()

auto xtd::forms::countries::moldova ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ monaco()

auto xtd::forms::countries::monaco ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ mongolia()

auto xtd::forms::countries::mongolia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ montenegro()

auto xtd::forms::countries::montenegro ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ montserrat()

auto xtd::forms::countries::montserrat ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ morocco()

auto xtd::forms::countries::morocco ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ mozambique()

auto xtd::forms::countries::mozambique ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ myanmar()

auto xtd::forms::countries::myanmar ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ namibia()

auto xtd::forms::countries::namibia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ nauru()

auto xtd::forms::countries::nauru ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ nepal()

auto xtd::forms::countries::nepal ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ netherlands()

auto xtd::forms::countries::netherlands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ new_caledonia()

auto xtd::forms::countries::new_caledonia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ new_zealand()

auto xtd::forms::countries::new_zealand ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ nicaragua()

auto xtd::forms::countries::nicaragua ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ niger()

auto xtd::forms::countries::niger ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ nigeria()

auto xtd::forms::countries::nigeria ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ niue()

auto xtd::forms::countries::niue ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ norfolk_island()

auto xtd::forms::countries::norfolk_island ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ north_macedonia()

auto xtd::forms::countries::north_macedonia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ northern_mariana_islands()

auto xtd::forms::countries::northern_mariana_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ norway()

auto xtd::forms::countries::norway ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ oman()

auto xtd::forms::countries::oman ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ pakistan()

auto xtd::forms::countries::pakistan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ palau()

auto xtd::forms::countries::palau ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ state_of_palestine()

auto xtd::forms::countries::state_of_palestine ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ panama()

auto xtd::forms::countries::panama ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ papua_new_guinea()

auto xtd::forms::countries::papua_new_guinea ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ paraguay()

auto xtd::forms::countries::paraguay ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ peru()

auto xtd::forms::countries::peru ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ philippines()

auto xtd::forms::countries::philippines ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ pitcairn()

auto xtd::forms::countries::pitcairn ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ poland()

auto xtd::forms::countries::poland ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ portugal()

auto xtd::forms::countries::portugal ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ puerto_rico()

auto xtd::forms::countries::puerto_rico ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ qatar()

auto xtd::forms::countries::qatar ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ reunion()

auto xtd::forms::countries::reunion ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ romania()

auto xtd::forms::countries::romania ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ russian_federation()

auto xtd::forms::countries::russian_federation ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ rwanda()

auto xtd::forms::countries::rwanda ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ saint_barthelemy()

auto xtd::forms::countries::saint_barthelemy ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ saint_helena_ascension_and_tristan_da_cunha()

auto xtd::forms::countries::saint_helena_ascension_and_tristan_da_cunha ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ saint_kitts_and_nevis()

auto xtd::forms::countries::saint_kitts_and_nevis ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ saint_lucia()

auto xtd::forms::countries::saint_lucia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ saint_martin_french_part()

auto xtd::forms::countries::saint_martin_french_part ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ saint_pierre_and_miquelon()

auto xtd::forms::countries::saint_pierre_and_miquelon ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ saint_vincent_and_the_grenadines()

auto xtd::forms::countries::saint_vincent_and_the_grenadines ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ samoa()

auto xtd::forms::countries::samoa ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ san_marino()

auto xtd::forms::countries::san_marino ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ sao_tome_and_principe()

auto xtd::forms::countries::sao_tome_and_principe ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ saudi_arabia()

auto xtd::forms::countries::saudi_arabia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ senegal()

auto xtd::forms::countries::senegal ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ serbia()

auto xtd::forms::countries::serbia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ seychelles()

auto xtd::forms::countries::seychelles ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ sierra_leone()

auto xtd::forms::countries::sierra_leone ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ singapore()

auto xtd::forms::countries::singapore ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ sint_maarten_dutch_part()

auto xtd::forms::countries::sint_maarten_dutch_part ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ slovakia()

auto xtd::forms::countries::slovakia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ slovenia()

auto xtd::forms::countries::slovenia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ solomon_islands()

auto xtd::forms::countries::solomon_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ somalia()

auto xtd::forms::countries::somalia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ south_africa()

auto xtd::forms::countries::south_africa ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ south_georgia_and_the_south_sandwich_islands()

auto xtd::forms::countries::south_georgia_and_the_south_sandwich_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ south_sudan()

auto xtd::forms::countries::south_sudan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ spain()

auto xtd::forms::countries::spain ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ sri_lanka()

auto xtd::forms::countries::sri_lanka ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ sudan()

auto xtd::forms::countries::sudan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ suriname()

auto xtd::forms::countries::suriname ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ svalbard_and_jan_mayen()

auto xtd::forms::countries::svalbard_and_jan_mayen ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ sweden()

auto xtd::forms::countries::sweden ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ switzerland()

auto xtd::forms::countries::switzerland ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ syrian_arab_republic()

auto xtd::forms::countries::syrian_arab_republic ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ taiwan_china()

auto xtd::forms::countries::taiwan_china ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ tajikistan()

auto xtd::forms::countries::tajikistan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ tanzania()

auto xtd::forms::countries::tanzania ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ thailand()

auto xtd::forms::countries::thailand ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ timor_leste()

auto xtd::forms::countries::timor_leste ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ togo()

auto xtd::forms::countries::togo ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ tokelau()

auto xtd::forms::countries::tokelau ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ tonga()

auto xtd::forms::countries::tonga ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ trinidad_and_tobago()

auto xtd::forms::countries::trinidad_and_tobago ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ tunisia()

auto xtd::forms::countries::tunisia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ turkey()

auto xtd::forms::countries::turkey ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ turkmenistan()

auto xtd::forms::countries::turkmenistan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ turks_and_caicos_islands()

auto xtd::forms::countries::turks_and_caicos_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ tuvalu()

auto xtd::forms::countries::tuvalu ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ uganda()

auto xtd::forms::countries::uganda ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ ukraine()

auto xtd::forms::countries::ukraine ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ united_arab_emirates()

auto xtd::forms::countries::united_arab_emirates ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ united_kingdom_of_great_britain_and_northern_ireland()

auto xtd::forms::countries::united_kingdom_of_great_britain_and_northern_ireland ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ united_states_of_america()

auto xtd::forms::countries::united_states_of_america ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ united_states_minor_outlying_islands()

auto xtd::forms::countries::united_states_minor_outlying_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ uruguay()

auto xtd::forms::countries::uruguay ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ uzbekistan()

auto xtd::forms::countries::uzbekistan ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ vanuatu()

auto xtd::forms::countries::vanuatu ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ venezuela()

auto xtd::forms::countries::venezuela ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ viet_nam()

auto xtd::forms::countries::viet_nam ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ british_virgin_islands()

auto xtd::forms::countries::british_virgin_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ united_states_virgin_islands()

auto xtd::forms::countries::united_states_virgin_islands ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ wallis_and_futuna()

auto xtd::forms::countries::wallis_and_futuna ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ western_sahara()

auto xtd::forms::countries::western_sahara ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ yemen()

auto xtd::forms::countries::yemen ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ zambia()

auto xtd::forms::countries::zambia ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ zimbabwe()

auto xtd::forms::countries::zimbabwe ( ) -> xtd::forms::country
staticnodiscard

A system-defined country object.

◆ get_countries()

auto xtd::forms::countries::get_countries ( ) -> const xtd::array< xtd::forms::country > &
staticnodiscard

Gets countries collection.

Returns
Countries collection.

The documentation for this class was generated from the following file: