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

Definition

Provides a collection of toggle_button objects for use by a Windows Forms application.

Header
#include <xtd/forms/toggle_buttons>
Namespace
xtd::forms
Library
xtd.forms
Examples
The following code example demonstrates the use of toggle_buttons control factory.
#include <xtd/xtd>
auto main() -> int {
auto form_main = form::create("toggle buttons example");
auto group_box_alignment = group_box::create(form_main, xtd::drawing::texts::alignment(), {10, 10}, {150, 240});
auto toggle_button_align_left = toggle_buttons::align_left(group_box_alignment, false, check_state::unchecked, {20, 20});
auto toggle_button_align_right = toggle_buttons::align_right(group_box_alignment, false, check_state::unchecked, {20, 70});
auto toggle_button_centered = toggle_buttons::centered(group_box_alignment, false, check_state::unchecked, {20, 120});
auto toggle_button_justified = toggle_buttons::justified(group_box_alignment, false, check_state::unchecked, {20, 170});
toggle_button_align_left.checked(true);
application::run(form_main);
}
static auto alignment() -> xtd::string
Gets a system-defined text that has a string value of "Alignment". This field is constant.
static auto create() -> form
A factory to create an xtd::forms::form.
static auto create() -> group_box
A factory to create an xtd::forms::group_box.

Public Static Methods

static auto abort () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button.
static auto abort (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified location.
static auto abort (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified location, and size.
static auto abort (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified location, size, and name.
static auto abort (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified and check_state.
static auto abort (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified check_state, and location.
static auto abort (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified check_state, location, and size.
static auto abort (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified check_state, location, size, and name.
static auto abort (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified three_state, and check_state.
static auto abort (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified three_state, check_state, and location.
static auto abort (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified three_state, check_state, location, and size.
static auto abort (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified three_state, check_state, location, size, and name.
static auto abort (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent.
static auto abort (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, and location.
static auto abort (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, location, and size.
static auto abort (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, location, size, and name.
static auto abort (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, and check_state.
static auto abort (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, check_state, and location.
static auto abort (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, check_state, location, and size.
static auto abort (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, check_state, location, size, and name.
static auto abort (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, three_state, and check_state.
static auto abort (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, three_state, check_state, and location.
static auto abort (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, three_state, check_state, location, and size.
static auto abort (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent abort toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto about () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button.
static auto about (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified location.
static auto about (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified location, and size.
static auto about (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified location, size, and name.
static auto about (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified and check_state.
static auto about (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified check_state, and location.
static auto about (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified check_state, location, and size.
static auto about (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified check_state, location, size, and name.
static auto about (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified three_state, and check_state.
static auto about (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified three_state, check_state, and location.
static auto about (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified three_state, check_state, location, and size.
static auto about (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified three_state, check_state, location, size, and name.
static auto about (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent.
static auto about (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, and location.
static auto about (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, location, and size.
static auto about (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, location, size, and name.
static auto about (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, and check_state.
static auto about (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, check_state, and location.
static auto about (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, check_state, location, and size.
static auto about (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, check_state, location, size, and name.
static auto about (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, three_state, and check_state.
static auto about (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, three_state, check_state, and location.
static auto about (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, three_state, check_state, location, and size.
static auto about (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent about toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto actual_size () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button.
static auto actual_size (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified location.
static auto actual_size (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified location, and size.
static auto actual_size (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified location, size, and name.
static auto actual_size (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified and check_state.
static auto actual_size (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified check_state, and location.
static auto actual_size (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified check_state, location, and size.
static auto actual_size (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified check_state, location, size, and name.
static auto actual_size (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified three_state, and check_state.
static auto actual_size (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified three_state, check_state, and location.
static auto actual_size (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified three_state, check_state, location, and size.
static auto actual_size (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified three_state, check_state, location, size, and name.
static auto actual_size (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent.
static auto actual_size (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, and location.
static auto actual_size (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, location, and size.
static auto actual_size (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, location, size, and name.
static auto actual_size (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, and check_state.
static auto actual_size (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, check_state, and location.
static auto actual_size (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, check_state, location, and size.
static auto actual_size (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, check_state, location, size, and name.
static auto actual_size (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, three_state, and check_state.
static auto actual_size (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, three_state, check_state, and location.
static auto actual_size (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, three_state, check_state, location, and size.
static auto actual_size (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto add () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button.
static auto add (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified location.
static auto add (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified location, and size.
static auto add (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified location, size, and name.
static auto add (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified and check_state.
static auto add (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified check_state, and location.
static auto add (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified check_state, location, and size.
static auto add (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified check_state, location, size, and name.
static auto add (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified three_state, and check_state.
static auto add (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified three_state, check_state, and location.
static auto add (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified three_state, check_state, location, and size.
static auto add (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified three_state, check_state, location, size, and name.
static auto add (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent.
static auto add (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, and location.
static auto add (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, location, and size.
static auto add (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, location, size, and name.
static auto add (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, and check_state.
static auto add (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, check_state, and location.
static auto add (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, check_state, location, and size.
static auto add (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, check_state, location, size, and name.
static auto add (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, three_state, and check_state.
static auto add (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, three_state, check_state, and location.
static auto add (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, three_state, check_state, location, and size.
static auto add (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent add toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto alignment () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button.
static auto alignment (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified location.
static auto alignment (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified location, and size.
static auto alignment (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified location, size, and name.
static auto alignment (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified and check_state.
static auto alignment (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified check_state, and location.
static auto alignment (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified check_state, location, and size.
static auto alignment (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified check_state, location, size, and name.
static auto alignment (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified three_state, and check_state.
static auto alignment (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified three_state, check_state, and location.
static auto alignment (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified three_state, check_state, location, and size.
static auto alignment (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified three_state, check_state, location, size, and name.
static auto alignment (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent.
static auto alignment (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, and location.
static auto alignment (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, location, and size.
static auto alignment (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, location, size, and name.
static auto alignment (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, and check_state.
static auto alignment (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, check_state, and location.
static auto alignment (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, check_state, location, and size.
static auto alignment (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, check_state, location, size, and name.
static auto alignment (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, three_state, and check_state.
static auto alignment (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, three_state, check_state, and location.
static auto alignment (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, three_state, check_state, location, and size.
static auto alignment (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent alignment toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto align_left () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button.
static auto align_left (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified location.
static auto align_left (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified location, and size.
static auto align_left (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified location, size, and name.
static auto align_left (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified and check_state.
static auto align_left (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified check_state, and location.
static auto align_left (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified check_state, location, and size.
static auto align_left (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified check_state, location, size, and name.
static auto align_left (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified three_state, and check_state.
static auto align_left (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified three_state, check_state, and location.
static auto align_left (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified three_state, check_state, location, and size.
static auto align_left (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified three_state, check_state, location, size, and name.
static auto align_left (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent.
static auto align_left (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, and location.
static auto align_left (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, location, and size.
static auto align_left (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, location, size, and name.
static auto align_left (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, and check_state.
static auto align_left (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, check_state, and location.
static auto align_left (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, check_state, location, and size.
static auto align_left (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, check_state, location, size, and name.
static auto align_left (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, three_state, and check_state.
static auto align_left (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, three_state, check_state, and location.
static auto align_left (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, three_state, check_state, location, and size.
static auto align_left (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_left toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto align_right () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button.
static auto align_right (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified location.
static auto align_right (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified location, and size.
static auto align_right (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified location, size, and name.
static auto align_right (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified and check_state.
static auto align_right (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified check_state, and location.
static auto align_right (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified check_state, location, and size.
static auto align_right (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified check_state, location, size, and name.
static auto align_right (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified three_state, and check_state.
static auto align_right (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified three_state, check_state, and location.
static auto align_right (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified three_state, check_state, location, and size.
static auto align_right (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified three_state, check_state, location, size, and name.
static auto align_right (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent.
static auto align_right (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, and location.
static auto align_right (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, location, and size.
static auto align_right (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, location, size, and name.
static auto align_right (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, and check_state.
static auto align_right (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, check_state, and location.
static auto align_right (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, check_state, location, and size.
static auto align_right (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, check_state, location, size, and name.
static auto align_right (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, three_state, and check_state.
static auto align_right (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, three_state, check_state, and location.
static auto align_right (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, three_state, check_state, location, and size.
static auto align_right (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent align_right toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto apply () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button.
static auto apply (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified location.
static auto apply (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified location, and size.
static auto apply (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified location, size, and name.
static auto apply (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified and check_state.
static auto apply (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified check_state, and location.
static auto apply (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified check_state, location, and size.
static auto apply (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified check_state, location, size, and name.
static auto apply (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified three_state, and check_state.
static auto apply (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified three_state, check_state, and location.
static auto apply (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified three_state, check_state, location, and size.
static auto apply (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified three_state, check_state, location, size, and name.
static auto apply (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent.
static auto apply (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, and location.
static auto apply (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, location, and size.
static auto apply (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, location, size, and name.
static auto apply (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, and check_state.
static auto apply (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, check_state, and location.
static auto apply (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, check_state, location, and size.
static auto apply (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, check_state, location, size, and name.
static auto apply (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, three_state, and check_state.
static auto apply (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, three_state, check_state, and location.
static auto apply (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, three_state, check_state, location, and size.
static auto apply (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent apply toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto ascending () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button.
static auto ascending (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified location.
static auto ascending (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified location, and size.
static auto ascending (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified location, size, and name.
static auto ascending (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified and check_state.
static auto ascending (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified check_state, and location.
static auto ascending (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified check_state, location, and size.
static auto ascending (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified check_state, location, size, and name.
static auto ascending (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified three_state, and check_state.
static auto ascending (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified three_state, check_state, and location.
static auto ascending (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified three_state, check_state, location, and size.
static auto ascending (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified three_state, check_state, location, size, and name.
static auto ascending (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent.
static auto ascending (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, and location.
static auto ascending (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, location, and size.
static auto ascending (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, location, size, and name.
static auto ascending (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, and check_state.
static auto ascending (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, check_state, and location.
static auto ascending (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, check_state, location, and size.
static auto ascending (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, check_state, location, size, and name.
static auto ascending (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, three_state, and check_state.
static auto ascending (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, three_state, check_state, and location.
static auto ascending (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, three_state, check_state, location, and size.
static auto ascending (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ascending toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto back () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button.
static auto back (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified location.
static auto back (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified location, and size.
static auto back (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified location, size, and name.
static auto back (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified and check_state.
static auto back (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified check_state, and location.
static auto back (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified check_state, location, and size.
static auto back (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified check_state, location, size, and name.
static auto back (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified three_state, and check_state.
static auto back (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified three_state, check_state, and location.
static auto back (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified three_state, check_state, location, and size.
static auto back (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified three_state, check_state, location, size, and name.
static auto back (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent.
static auto back (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, and location.
static auto back (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, location, and size.
static auto back (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, location, size, and name.
static auto back (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, and check_state.
static auto back (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, check_state, and location.
static auto back (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, check_state, location, and size.
static auto back (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, check_state, location, size, and name.
static auto back (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, three_state, and check_state.
static auto back (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, three_state, check_state, and location.
static auto back (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, three_state, check_state, location, and size.
static auto back (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent back toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto bold () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button.
static auto bold (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified location.
static auto bold (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified location, and size.
static auto bold (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified location, size, and name.
static auto bold (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified and check_state.
static auto bold (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified check_state, and location.
static auto bold (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified check_state, location, and size.
static auto bold (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified check_state, location, size, and name.
static auto bold (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified three_state, and check_state.
static auto bold (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified three_state, check_state, and location.
static auto bold (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified three_state, check_state, location, and size.
static auto bold (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified three_state, check_state, location, size, and name.
static auto bold (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent.
static auto bold (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, and location.
static auto bold (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, location, and size.
static auto bold (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, location, size, and name.
static auto bold (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, and check_state.
static auto bold (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, check_state, and location.
static auto bold (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, check_state, location, and size.
static auto bold (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, check_state, location, size, and name.
static auto bold (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, three_state, and check_state.
static auto bold (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, three_state, check_state, and location.
static auto bold (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, three_state, check_state, location, and size.
static auto bold (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bold toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto bottom () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button.
static auto bottom (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified location.
static auto bottom (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified location, and size.
static auto bottom (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified location, size, and name.
static auto bottom (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified and check_state.
static auto bottom (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified check_state, and location.
static auto bottom (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified check_state, location, and size.
static auto bottom (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified check_state, location, size, and name.
static auto bottom (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified three_state, and check_state.
static auto bottom (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified three_state, check_state, and location.
static auto bottom (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified three_state, check_state, location, and size.
static auto bottom (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified three_state, check_state, location, size, and name.
static auto bottom (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent.
static auto bottom (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, and location.
static auto bottom (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, location, and size.
static auto bottom (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, location, size, and name.
static auto bottom (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, and check_state.
static auto bottom (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, check_state, and location.
static auto bottom (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, check_state, location, and size.
static auto bottom (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, check_state, location, size, and name.
static auto bottom (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, three_state, and check_state.
static auto bottom (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, three_state, check_state, and location.
static auto bottom (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, three_state, check_state, location, and size.
static auto bottom (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent bottom toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto cancel () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button.
static auto cancel (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified location.
static auto cancel (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified location, and size.
static auto cancel (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified location, size, and name.
static auto cancel (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified and check_state.
static auto cancel (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified check_state, and location.
static auto cancel (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified check_state, location, and size.
static auto cancel (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified check_state, location, size, and name.
static auto cancel (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified three_state, and check_state.
static auto cancel (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified three_state, check_state, and location.
static auto cancel (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified three_state, check_state, location, and size.
static auto cancel (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified three_state, check_state, location, size, and name.
static auto cancel (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent.
static auto cancel (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, and location.
static auto cancel (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, location, and size.
static auto cancel (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, location, size, and name.
static auto cancel (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, and check_state.
static auto cancel (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, check_state, and location.
static auto cancel (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, check_state, location, and size.
static auto cancel (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, check_state, location, size, and name.
static auto cancel (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, three_state, and check_state.
static auto cancel (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, three_state, check_state, and location.
static auto cancel (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, three_state, check_state, location, and size.
static auto cancel (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cancel toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto cdrom () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button.
static auto cdrom (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified location.
static auto cdrom (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified location, and size.
static auto cdrom (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified location, size, and name.
static auto cdrom (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified and check_state.
static auto cdrom (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified check_state, and location.
static auto cdrom (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified check_state, location, and size.
static auto cdrom (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified check_state, location, size, and name.
static auto cdrom (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified three_state, and check_state.
static auto cdrom (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified three_state, check_state, and location.
static auto cdrom (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified three_state, check_state, location, and size.
static auto cdrom (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified three_state, check_state, location, size, and name.
static auto cdrom (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent.
static auto cdrom (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, and location.
static auto cdrom (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, location, and size.
static auto cdrom (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, location, size, and name.
static auto cdrom (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, and check_state.
static auto cdrom (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, check_state, and location.
static auto cdrom (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, check_state, location, and size.
static auto cdrom (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, check_state, location, size, and name.
static auto cdrom (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, three_state, and check_state.
static auto cdrom (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, three_state, check_state, and location.
static auto cdrom (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, three_state, check_state, location, and size.
static auto cdrom (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto centered () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button.
static auto centered (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified location.
static auto centered (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified location, and size.
static auto centered (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified location, size, and name.
static auto centered (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified and check_state.
static auto centered (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified check_state, and location.
static auto centered (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified check_state, location, and size.
static auto centered (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified check_state, location, size, and name.
static auto centered (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified three_state, and check_state.
static auto centered (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified three_state, check_state, and location.
static auto centered (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified three_state, check_state, location, and size.
static auto centered (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified three_state, check_state, location, size, and name.
static auto centered (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent.
static auto centered (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, and location.
static auto centered (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, location, and size.
static auto centered (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, location, size, and name.
static auto centered (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, and check_state.
static auto centered (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, check_state, and location.
static auto centered (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, check_state, location, and size.
static auto centered (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, check_state, location, size, and name.
static auto centered (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, three_state, and check_state.
static auto centered (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, three_state, check_state, and location.
static auto centered (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, three_state, check_state, location, and size.
static auto centered (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent centered toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto clear () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button.
static auto clear (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified location.
static auto clear (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified location, and size.
static auto clear (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified location, size, and name.
static auto clear (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified and check_state.
static auto clear (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified check_state, and location.
static auto clear (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified check_state, location, and size.
static auto clear (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified check_state, location, size, and name.
static auto clear (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified three_state, and check_state.
static auto clear (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified three_state, check_state, and location.
static auto clear (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified three_state, check_state, location, and size.
static auto clear (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified three_state, check_state, location, size, and name.
static auto clear (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent.
static auto clear (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, and location.
static auto clear (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, location, and size.
static auto clear (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, location, size, and name.
static auto clear (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, and check_state.
static auto clear (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, check_state, and location.
static auto clear (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, check_state, location, and size.
static auto clear (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, check_state, location, size, and name.
static auto clear (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, three_state, and check_state.
static auto clear (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, three_state, check_state, and location.
static auto clear (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, three_state, check_state, location, and size.
static auto clear (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent clear toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto close () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button.
static auto close (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified location.
static auto close (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified location, and size.
static auto close (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified location, size, and name.
static auto close (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified and check_state.
static auto close (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified check_state, and location.
static auto close (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified check_state, location, and size.
static auto close (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified check_state, location, size, and name.
static auto close (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified three_state, and check_state.
static auto close (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified three_state, check_state, and location.
static auto close (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified three_state, check_state, location, and size.
static auto close (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified three_state, check_state, location, size, and name.
static auto close (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent.
static auto close (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, and location.
static auto close (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, location, and size.
static auto close (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, location, size, and name.
static auto close (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, and check_state.
static auto close (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, check_state, and location.
static auto close (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, check_state, location, and size.
static auto close (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, check_state, location, size, and name.
static auto close (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, three_state, and check_state.
static auto close (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, three_state, check_state, and location.
static auto close (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, three_state, check_state, location, and size.
static auto close (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent close toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto color () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button.
static auto color (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified location.
static auto color (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified location, and size.
static auto color (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified location, size, and name.
static auto color (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified and check_state.
static auto color (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified check_state, and location.
static auto color (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified check_state, location, and size.
static auto color (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified check_state, location, size, and name.
static auto color (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified three_state, and check_state.
static auto color (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified three_state, check_state, and location.
static auto color (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified three_state, check_state, location, and size.
static auto color (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified three_state, check_state, location, size, and name.
static auto color (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent.
static auto color (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, and location.
static auto color (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, location, and size.
static auto color (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, location, size, and name.
static auto color (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, and check_state.
static auto color (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, check_state, and location.
static auto color (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, check_state, location, and size.
static auto color (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, check_state, location, size, and name.
static auto color (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, three_state, and check_state.
static auto color (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, three_state, check_state, and location.
static auto color (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, three_state, check_state, location, and size.
static auto color (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent color toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto contents () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button.
static auto contents (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified location.
static auto contents (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified location, and size.
static auto contents (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified location, size, and name.
static auto contents (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified and check_state.
static auto contents (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified check_state, and location.
static auto contents (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified check_state, location, and size.
static auto contents (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified check_state, location, size, and name.
static auto contents (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified three_state, and check_state.
static auto contents (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified three_state, check_state, and location.
static auto contents (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified three_state, check_state, location, and size.
static auto contents (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified three_state, check_state, location, size, and name.
static auto contents (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent.
static auto contents (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, and location.
static auto contents (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, location, and size.
static auto contents (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, location, size, and name.
static auto contents (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, and check_state.
static auto contents (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, check_state, and location.
static auto contents (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, check_state, location, and size.
static auto contents (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, check_state, location, size, and name.
static auto contents (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, three_state, and check_state.
static auto contents (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, three_state, check_state, and location.
static auto contents (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, three_state, check_state, location, and size.
static auto contents (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent contents toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto convert () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button.
static auto convert (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified location.
static auto convert (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified location, and size.
static auto convert (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified location, size, and name.
static auto convert (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified and check_state.
static auto convert (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified check_state, and location.
static auto convert (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified check_state, location, and size.
static auto convert (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified check_state, location, size, and name.
static auto convert (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified three_state, and check_state.
static auto convert (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified three_state, check_state, and location.
static auto convert (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified three_state, check_state, location, and size.
static auto convert (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified three_state, check_state, location, size, and name.
static auto convert (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent.
static auto convert (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, and location.
static auto convert (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, location, and size.
static auto convert (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, location, size, and name.
static auto convert (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, and check_state.
static auto convert (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, check_state, and location.
static auto convert (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, check_state, location, and size.
static auto convert (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, check_state, location, size, and name.
static auto convert (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, three_state, and check_state.
static auto convert (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, three_state, check_state, and location.
static auto convert (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, three_state, check_state, location, and size.
static auto convert (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent convert toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto copy () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button.
static auto copy (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified location.
static auto copy (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified location, and size.
static auto copy (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified location, size, and name.
static auto copy (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified and check_state.
static auto copy (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified check_state, and location.
static auto copy (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified check_state, location, and size.
static auto copy (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified check_state, location, size, and name.
static auto copy (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified three_state, and check_state.
static auto copy (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified three_state, check_state, and location.
static auto copy (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified three_state, check_state, location, and size.
static auto copy (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified three_state, check_state, location, size, and name.
static auto copy (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent.
static auto copy (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, and location.
static auto copy (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, location, and size.
static auto copy (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, location, size, and name.
static auto copy (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, and check_state.
static auto copy (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, check_state, and location.
static auto copy (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, check_state, location, and size.
static auto copy (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, check_state, location, size, and name.
static auto copy (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, three_state, and check_state.
static auto copy (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, three_state, check_state, and location.
static auto copy (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, three_state, check_state, location, and size.
static auto copy (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent copy toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto customize () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button.
static auto customize (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified location.
static auto customize (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified location, and size.
static auto customize (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified location, size, and name.
static auto customize (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified and check_state.
static auto customize (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified check_state, and location.
static auto customize (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified check_state, location, and size.
static auto customize (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified check_state, location, size, and name.
static auto customize (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified three_state, and check_state.
static auto customize (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified three_state, check_state, and location.
static auto customize (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified three_state, check_state, location, and size.
static auto customize (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified three_state, check_state, location, size, and name.
static auto customize (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent.
static auto customize (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, and location.
static auto customize (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, location, and size.
static auto customize (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, location, size, and name.
static auto customize (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, and check_state.
static auto customize (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, check_state, and location.
static auto customize (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, check_state, location, and size.
static auto customize (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, check_state, location, size, and name.
static auto customize (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, three_state, and check_state.
static auto customize (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, three_state, check_state, and location.
static auto customize (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, three_state, check_state, location, and size.
static auto customize (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent customize toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto cut () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button.
static auto cut (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified location.
static auto cut (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified location, and size.
static auto cut (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified location, size, and name.
static auto cut (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified and check_state.
static auto cut (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified check_state, and location.
static auto cut (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified check_state, location, and size.
static auto cut (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified check_state, location, size, and name.
static auto cut (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified three_state, and check_state.
static auto cut (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified three_state, check_state, and location.
static auto cut (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified three_state, check_state, location, and size.
static auto cut (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified three_state, check_state, location, size, and name.
static auto cut (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent.
static auto cut (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, and location.
static auto cut (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, location, and size.
static auto cut (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, location, size, and name.
static auto cut (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, and check_state.
static auto cut (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, check_state, and location.
static auto cut (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, check_state, location, and size.
static auto cut (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, check_state, location, size, and name.
static auto cut (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, three_state, and check_state.
static auto cut (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, three_state, check_state, and location.
static auto cut (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, three_state, check_state, location, and size.
static auto cut (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent cut toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto del () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button.
static auto del (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified location.
static auto del (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified location, and size.
static auto del (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified location, size, and name.
static auto del (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified and check_state.
static auto del (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified check_state, and location.
static auto del (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified check_state, location, and size.
static auto del (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified check_state, location, size, and name.
static auto del (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified three_state, and check_state.
static auto del (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified three_state, check_state, and location.
static auto del (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified three_state, check_state, location, and size.
static auto del (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified three_state, check_state, location, size, and name.
static auto del (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent.
static auto del (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, and location.
static auto del (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, location, and size.
static auto del (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, location, size, and name.
static auto del (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, and check_state.
static auto del (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, check_state, and location.
static auto del (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, check_state, location, and size.
static auto del (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, check_state, location, size, and name.
static auto del (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, three_state, and check_state.
static auto del (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, three_state, check_state, and location.
static auto del (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, three_state, check_state, location, and size.
static auto del (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent del toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto descending () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button.
static auto descending (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified location.
static auto descending (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified location, and size.
static auto descending (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified location, size, and name.
static auto descending (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified and check_state.
static auto descending (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified check_state, and location.
static auto descending (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified check_state, location, and size.
static auto descending (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified check_state, location, size, and name.
static auto descending (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified three_state, and check_state.
static auto descending (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified three_state, check_state, and location.
static auto descending (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified three_state, check_state, location, and size.
static auto descending (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified three_state, check_state, location, size, and name.
static auto descending (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent.
static auto descending (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, and location.
static auto descending (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, location, and size.
static auto descending (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, location, size, and name.
static auto descending (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, and check_state.
static auto descending (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, check_state, and location.
static auto descending (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, check_state, location, and size.
static auto descending (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, check_state, location, size, and name.
static auto descending (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, three_state, and check_state.
static auto descending (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, three_state, check_state, and location.
static auto descending (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, three_state, check_state, location, and size.
static auto descending (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent descending toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto down () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button.
static auto down (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified location.
static auto down (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified location, and size.
static auto down (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified location, size, and name.
static auto down (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified and check_state.
static auto down (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified check_state, and location.
static auto down (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified check_state, location, and size.
static auto down (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified check_state, location, size, and name.
static auto down (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified three_state, and check_state.
static auto down (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified three_state, check_state, and location.
static auto down (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified three_state, check_state, location, and size.
static auto down (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified three_state, check_state, location, size, and name.
static auto down (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent.
static auto down (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, and location.
static auto down (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, location, and size.
static auto down (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, location, size, and name.
static auto down (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, and check_state.
static auto down (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, check_state, and location.
static auto down (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, check_state, location, and size.
static auto down (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, check_state, location, size, and name.
static auto down (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, three_state, and check_state.
static auto down (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, three_state, check_state, and location.
static auto down (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, three_state, check_state, location, and size.
static auto down (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent down toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto edit () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button.
static auto edit (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified location.
static auto edit (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified location, and size.
static auto edit (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified location, size, and name.
static auto edit (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified and check_state.
static auto edit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified check_state, and location.
static auto edit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified check_state, location, and size.
static auto edit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified check_state, location, size, and name.
static auto edit (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified three_state, and check_state.
static auto edit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified three_state, check_state, and location.
static auto edit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified three_state, check_state, location, and size.
static auto edit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified three_state, check_state, location, size, and name.
static auto edit (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent.
static auto edit (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, and location.
static auto edit (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, location, and size.
static auto edit (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, location, size, and name.
static auto edit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, and check_state.
static auto edit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, check_state, and location.
static auto edit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, check_state, location, and size.
static auto edit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, check_state, location, size, and name.
static auto edit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, three_state, and check_state.
static auto edit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, three_state, check_state, and location.
static auto edit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, three_state, check_state, location, and size.
static auto edit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent edit toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto execute () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button.
static auto execute (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified location.
static auto execute (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified location, and size.
static auto execute (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified location, size, and name.
static auto execute (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified and check_state.
static auto execute (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified check_state, and location.
static auto execute (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified check_state, location, and size.
static auto execute (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified check_state, location, size, and name.
static auto execute (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified three_state, and check_state.
static auto execute (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified three_state, check_state, and location.
static auto execute (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified three_state, check_state, location, and size.
static auto execute (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified three_state, check_state, location, size, and name.
static auto execute (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent.
static auto execute (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, and location.
static auto execute (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, location, and size.
static auto execute (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, location, size, and name.
static auto execute (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, and check_state.
static auto execute (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, check_state, and location.
static auto execute (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, check_state, location, and size.
static auto execute (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, check_state, location, size, and name.
static auto execute (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, three_state, and check_state.
static auto execute (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, three_state, check_state, and location.
static auto execute (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, three_state, check_state, location, and size.
static auto execute (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent execute toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto exit () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button.
static auto exit (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified location.
static auto exit (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified location, and size.
static auto exit (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified location, size, and name.
static auto exit (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified and check_state.
static auto exit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified check_state, and location.
static auto exit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified check_state, location, and size.
static auto exit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified check_state, location, size, and name.
static auto exit (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified three_state, and check_state.
static auto exit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified three_state, check_state, and location.
static auto exit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified three_state, check_state, location, and size.
static auto exit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified three_state, check_state, location, size, and name.
static auto exit (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent.
static auto exit (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, and location.
static auto exit (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, location, and size.
static auto exit (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, location, size, and name.
static auto exit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, and check_state.
static auto exit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, check_state, and location.
static auto exit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, check_state, location, and size.
static auto exit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, check_state, location, size, and name.
static auto exit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, three_state, and check_state.
static auto exit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, three_state, check_state, and location.
static auto exit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, three_state, check_state, location, and size.
static auto exit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent exit toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto file () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button.
static auto file (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified location.
static auto file (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified location, and size.
static auto file (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified location, size, and name.
static auto file (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified and check_state.
static auto file (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified check_state, and location.
static auto file (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified check_state, location, and size.
static auto file (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified check_state, location, size, and name.
static auto file (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified three_state, and check_state.
static auto file (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified three_state, check_state, and location.
static auto file (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified three_state, check_state, location, and size.
static auto file (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified three_state, check_state, location, size, and name.
static auto file (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent.
static auto file (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, and location.
static auto file (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, location, and size.
static auto file (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, location, size, and name.
static auto file (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, and check_state.
static auto file (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, check_state, and location.
static auto file (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, check_state, location, and size.
static auto file (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, check_state, location, size, and name.
static auto file (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, three_state, and check_state.
static auto file (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, three_state, check_state, and location.
static auto file (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, three_state, check_state, location, and size.
static auto file (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent file toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto find () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button.
static auto find (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified location.
static auto find (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified location, and size.
static auto find (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified location, size, and name.
static auto find (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified and check_state.
static auto find (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified check_state, and location.
static auto find (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified check_state, location, and size.
static auto find (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified check_state, location, size, and name.
static auto find (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified three_state, and check_state.
static auto find (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified three_state, check_state, and location.
static auto find (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified three_state, check_state, location, and size.
static auto find (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified three_state, check_state, location, size, and name.
static auto find (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent.
static auto find (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, and location.
static auto find (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, location, and size.
static auto find (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, location, size, and name.
static auto find (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, and check_state.
static auto find (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, check_state, and location.
static auto find (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, check_state, location, and size.
static auto find (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, check_state, location, size, and name.
static auto find (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, three_state, and check_state.
static auto find (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, three_state, check_state, and location.
static auto find (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, three_state, check_state, location, and size.
static auto find (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent find toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto first () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button.
static auto first (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified location.
static auto first (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified location, and size.
static auto first (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified location, size, and name.
static auto first (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified and check_state.
static auto first (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified check_state, and location.
static auto first (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified check_state, location, and size.
static auto first (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified check_state, location, size, and name.
static auto first (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified three_state, and check_state.
static auto first (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified three_state, check_state, and location.
static auto first (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified three_state, check_state, location, and size.
static auto first (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified three_state, check_state, location, size, and name.
static auto first (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent.
static auto first (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, and location.
static auto first (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, location, and size.
static auto first (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, location, size, and name.
static auto first (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, and check_state.
static auto first (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, check_state, and location.
static auto first (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, check_state, location, and size.
static auto first (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, check_state, location, size, and name.
static auto first (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, three_state, and check_state.
static auto first (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, three_state, check_state, and location.
static auto first (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, three_state, check_state, location, and size.
static auto first (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent first toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto floppy () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button.
static auto floppy (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified location.
static auto floppy (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified location, and size.
static auto floppy (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified location, size, and name.
static auto floppy (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified and check_state.
static auto floppy (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified check_state, and location.
static auto floppy (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified check_state, location, and size.
static auto floppy (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified check_state, location, size, and name.
static auto floppy (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified three_state, and check_state.
static auto floppy (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified three_state, check_state, and location.
static auto floppy (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified three_state, check_state, location, and size.
static auto floppy (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified three_state, check_state, location, size, and name.
static auto floppy (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent.
static auto floppy (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, and location.
static auto floppy (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, location, and size.
static auto floppy (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, location, size, and name.
static auto floppy (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, and check_state.
static auto floppy (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, check_state, and location.
static auto floppy (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, check_state, location, and size.
static auto floppy (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, check_state, location, size, and name.
static auto floppy (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, three_state, and check_state.
static auto floppy (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, three_state, check_state, and location.
static auto floppy (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, three_state, check_state, location, and size.
static auto floppy (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent floppy toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto font () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button.
static auto font (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified location.
static auto font (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified location, and size.
static auto font (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified location, size, and name.
static auto font (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified and check_state.
static auto font (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified check_state, and location.
static auto font (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified check_state, location, and size.
static auto font (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified check_state, location, size, and name.
static auto font (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified three_state, and check_state.
static auto font (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified three_state, check_state, and location.
static auto font (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified three_state, check_state, location, and size.
static auto font (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified three_state, check_state, location, size, and name.
static auto font (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent.
static auto font (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, and location.
static auto font (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, location, and size.
static auto font (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, location, size, and name.
static auto font (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, and check_state.
static auto font (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, check_state, and location.
static auto font (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, check_state, location, and size.
static auto font (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, check_state, location, size, and name.
static auto font (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, three_state, and check_state.
static auto font (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, three_state, check_state, and location.
static auto font (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, three_state, check_state, location, and size.
static auto font (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent font toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto forward () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button.
static auto forward (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified location.
static auto forward (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified location, and size.
static auto forward (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified location, size, and name.
static auto forward (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified and check_state.
static auto forward (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified check_state, and location.
static auto forward (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified check_state, location, and size.
static auto forward (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified check_state, location, size, and name.
static auto forward (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified three_state, and check_state.
static auto forward (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified three_state, check_state, and location.
static auto forward (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified three_state, check_state, location, and size.
static auto forward (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified three_state, check_state, location, size, and name.
static auto forward (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent.
static auto forward (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, and location.
static auto forward (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, location, and size.
static auto forward (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, location, size, and name.
static auto forward (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, and check_state.
static auto forward (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, check_state, and location.
static auto forward (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, check_state, location, and size.
static auto forward (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, check_state, location, size, and name.
static auto forward (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, three_state, and check_state.
static auto forward (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, three_state, check_state, and location.
static auto forward (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, three_state, check_state, location, and size.
static auto forward (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent forward toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto harddisk () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button.
static auto harddisk (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified location.
static auto harddisk (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified location, and size.
static auto harddisk (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified location, size, and name.
static auto harddisk (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified and check_state.
static auto harddisk (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified check_state, and location.
static auto harddisk (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified check_state, location, and size.
static auto harddisk (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified check_state, location, size, and name.
static auto harddisk (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified three_state, and check_state.
static auto harddisk (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified three_state, check_state, and location.
static auto harddisk (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified three_state, check_state, location, and size.
static auto harddisk (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified three_state, check_state, location, size, and name.
static auto harddisk (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent.
static auto harddisk (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, and location.
static auto harddisk (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, location, and size.
static auto harddisk (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, location, size, and name.
static auto harddisk (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, and check_state.
static auto harddisk (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, check_state, and location.
static auto harddisk (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, check_state, location, and size.
static auto harddisk (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, check_state, location, size, and name.
static auto harddisk (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, three_state, and check_state.
static auto harddisk (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, three_state, check_state, and location.
static auto harddisk (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, three_state, check_state, location, and size.
static auto harddisk (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto help () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button.
static auto help (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified location.
static auto help (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified location, and size.
static auto help (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified location, size, and name.
static auto help (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified and check_state.
static auto help (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified check_state, and location.
static auto help (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified check_state, location, and size.
static auto help (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified check_state, location, size, and name.
static auto help (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified three_state, and check_state.
static auto help (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified three_state, check_state, and location.
static auto help (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified three_state, check_state, location, and size.
static auto help (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified three_state, check_state, location, size, and name.
static auto help (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent.
static auto help (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, and location.
static auto help (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, location, and size.
static auto help (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, location, size, and name.
static auto help (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, and check_state.
static auto help (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, check_state, and location.
static auto help (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, check_state, location, and size.
static auto help (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, check_state, location, size, and name.
static auto help (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, three_state, and check_state.
static auto help (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, three_state, check_state, and location.
static auto help (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, three_state, check_state, location, and size.
static auto help (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent help toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto home () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button.
static auto home (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified location.
static auto home (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified location, and size.
static auto home (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified location, size, and name.
static auto home (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified and check_state.
static auto home (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified check_state, and location.
static auto home (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified check_state, location, and size.
static auto home (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified check_state, location, size, and name.
static auto home (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified three_state, and check_state.
static auto home (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified three_state, check_state, and location.
static auto home (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified three_state, check_state, location, and size.
static auto home (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified three_state, check_state, location, size, and name.
static auto home (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent.
static auto home (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, and location.
static auto home (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, location, and size.
static auto home (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, location, size, and name.
static auto home (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, and check_state.
static auto home (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, check_state, and location.
static auto home (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, check_state, location, and size.
static auto home (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, check_state, location, size, and name.
static auto home (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, three_state, and check_state.
static auto home (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, three_state, check_state, and location.
static auto home (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, three_state, check_state, location, and size.
static auto home (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent home toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto ignore () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button.
static auto ignore (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified location.
static auto ignore (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified location, and size.
static auto ignore (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified location, size, and name.
static auto ignore (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified and check_state.
static auto ignore (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified check_state, and location.
static auto ignore (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified check_state, location, and size.
static auto ignore (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified check_state, location, size, and name.
static auto ignore (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified three_state, and check_state.
static auto ignore (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified three_state, check_state, and location.
static auto ignore (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified three_state, check_state, location, and size.
static auto ignore (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified three_state, check_state, location, size, and name.
static auto ignore (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent.
static auto ignore (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, and location.
static auto ignore (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, location, and size.
static auto ignore (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, location, size, and name.
static auto ignore (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, and check_state.
static auto ignore (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, check_state, and location.
static auto ignore (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, check_state, location, and size.
static auto ignore (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, check_state, location, size, and name.
static auto ignore (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, three_state, and check_state.
static auto ignore (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, three_state, check_state, and location.
static auto ignore (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, three_state, check_state, location, and size.
static auto ignore (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ignore toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto indent () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button.
static auto indent (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified location.
static auto indent (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified location, and size.
static auto indent (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified location, size, and name.
static auto indent (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified and check_state.
static auto indent (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified check_state, and location.
static auto indent (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified check_state, location, and size.
static auto indent (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified check_state, location, size, and name.
static auto indent (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified three_state, and check_state.
static auto indent (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified three_state, check_state, and location.
static auto indent (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified three_state, check_state, location, and size.
static auto indent (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified three_state, check_state, location, size, and name.
static auto indent (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent.
static auto indent (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, and location.
static auto indent (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, location, and size.
static auto indent (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, location, size, and name.
static auto indent (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, and check_state.
static auto indent (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, check_state, and location.
static auto indent (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, check_state, location, and size.
static auto indent (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, check_state, location, size, and name.
static auto indent (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, three_state, and check_state.
static auto indent (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, three_state, check_state, and location.
static auto indent (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, three_state, check_state, location, and size.
static auto indent (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent indent toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto index () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button.
static auto index (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified location.
static auto index (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified location, and size.
static auto index (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified location, size, and name.
static auto index (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified and check_state.
static auto index (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified check_state, and location.
static auto index (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified check_state, location, and size.
static auto index (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified check_state, location, size, and name.
static auto index (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified three_state, and check_state.
static auto index (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified three_state, check_state, and location.
static auto index (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified three_state, check_state, location, and size.
static auto index (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified three_state, check_state, location, size, and name.
static auto index (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent.
static auto index (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, and location.
static auto index (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, location, and size.
static auto index (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, location, size, and name.
static auto index (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, and check_state.
static auto index (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, check_state, and location.
static auto index (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, check_state, location, and size.
static auto index (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, check_state, location, size, and name.
static auto index (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, three_state, and check_state.
static auto index (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, three_state, check_state, and location.
static auto index (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, three_state, check_state, location, and size.
static auto index (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent index toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto info () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button.
static auto info (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified location.
static auto info (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified location, and size.
static auto info (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified location, size, and name.
static auto info (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified and check_state.
static auto info (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified check_state, and location.
static auto info (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified check_state, location, and size.
static auto info (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified check_state, location, size, and name.
static auto info (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified three_state, and check_state.
static auto info (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified three_state, check_state, and location.
static auto info (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified three_state, check_state, location, and size.
static auto info (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified three_state, check_state, location, size, and name.
static auto info (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent.
static auto info (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, and location.
static auto info (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, location, and size.
static auto info (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, location, size, and name.
static auto info (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, and check_state.
static auto info (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, check_state, and location.
static auto info (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, check_state, location, and size.
static auto info (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, check_state, location, size, and name.
static auto info (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, three_state, and check_state.
static auto info (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, three_state, check_state, and location.
static auto info (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, three_state, check_state, location, and size.
static auto info (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent info toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto italic () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button.
static auto italic (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified location.
static auto italic (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified location, and size.
static auto italic (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified location, size, and name.
static auto italic (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified and check_state.
static auto italic (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified check_state, and location.
static auto italic (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified check_state, location, and size.
static auto italic (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified check_state, location, size, and name.
static auto italic (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified three_state, and check_state.
static auto italic (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified three_state, check_state, and location.
static auto italic (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified three_state, check_state, location, and size.
static auto italic (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified three_state, check_state, location, size, and name.
static auto italic (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent.
static auto italic (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, and location.
static auto italic (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, location, and size.
static auto italic (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, location, size, and name.
static auto italic (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, and check_state.
static auto italic (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, check_state, and location.
static auto italic (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, check_state, location, and size.
static auto italic (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, check_state, location, size, and name.
static auto italic (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, three_state, and check_state.
static auto italic (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, three_state, check_state, and location.
static auto italic (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, three_state, check_state, location, and size.
static auto italic (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent italic toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto justified () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button.
static auto justified (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified location.
static auto justified (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified location, and size.
static auto justified (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified location, size, and name.
static auto justified (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified and check_state.
static auto justified (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified check_state, and location.
static auto justified (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified check_state, location, and size.
static auto justified (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified check_state, location, size, and name.
static auto justified (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified three_state, and check_state.
static auto justified (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified three_state, check_state, and location.
static auto justified (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified three_state, check_state, location, and size.
static auto justified (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified three_state, check_state, location, size, and name.
static auto justified (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent.
static auto justified (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, and location.
static auto justified (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, location, and size.
static auto justified (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, location, size, and name.
static auto justified (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, and check_state.
static auto justified (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, check_state, and location.
static auto justified (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, check_state, location, and size.
static auto justified (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, check_state, location, size, and name.
static auto justified (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, three_state, and check_state.
static auto justified (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, three_state, check_state, and location.
static auto justified (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, three_state, check_state, location, and size.
static auto justified (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent justified toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto jump_to () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button.
static auto jump_to (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified location.
static auto jump_to (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified location, and size.
static auto jump_to (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified location, size, and name.
static auto jump_to (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified and check_state.
static auto jump_to (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified check_state, and location.
static auto jump_to (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified check_state, location, and size.
static auto jump_to (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified check_state, location, size, and name.
static auto jump_to (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified three_state, and check_state.
static auto jump_to (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified three_state, check_state, and location.
static auto jump_to (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified three_state, check_state, location, and size.
static auto jump_to (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified three_state, check_state, location, size, and name.
static auto jump_to (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent.
static auto jump_to (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, and location.
static auto jump_to (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, location, and size.
static auto jump_to (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, location, size, and name.
static auto jump_to (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, and check_state.
static auto jump_to (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, check_state, and location.
static auto jump_to (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, check_state, location, and size.
static auto jump_to (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, check_state, location, size, and name.
static auto jump_to (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, three_state, and check_state.
static auto jump_to (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, three_state, check_state, and location.
static auto jump_to (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, three_state, check_state, location, and size.
static auto jump_to (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto last () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button.
static auto last (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified location.
static auto last (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified location, and size.
static auto last (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified location, size, and name.
static auto last (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified and check_state.
static auto last (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified check_state, and location.
static auto last (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified check_state, location, and size.
static auto last (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified check_state, location, size, and name.
static auto last (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified three_state, and check_state.
static auto last (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified three_state, check_state, and location.
static auto last (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified three_state, check_state, location, and size.
static auto last (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified three_state, check_state, location, size, and name.
static auto last (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent.
static auto last (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, and location.
static auto last (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, location, and size.
static auto last (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, location, size, and name.
static auto last (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, and check_state.
static auto last (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, check_state, and location.
static auto last (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, check_state, location, and size.
static auto last (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, check_state, location, size, and name.
static auto last (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, three_state, and check_state.
static auto last (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, three_state, check_state, and location.
static auto last (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, three_state, check_state, location, and size.
static auto last (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent last toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto network () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button.
static auto network (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified location.
static auto network (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified location, and size.
static auto network (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified location, size, and name.
static auto network (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified and check_state.
static auto network (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified check_state, and location.
static auto network (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified check_state, location, and size.
static auto network (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified check_state, location, size, and name.
static auto network (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified three_state, and check_state.
static auto network (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified three_state, check_state, and location.
static auto network (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified three_state, check_state, location, and size.
static auto network (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified three_state, check_state, location, size, and name.
static auto network (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent.
static auto network (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, and location.
static auto network (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, location, and size.
static auto network (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, location, size, and name.
static auto network (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, and check_state.
static auto network (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, check_state, and location.
static auto network (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, check_state, location, and size.
static auto network (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, check_state, location, size, and name.
static auto network (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, three_state, and check_state.
static auto network (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, three_state, check_state, and location.
static auto network (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, three_state, check_state, location, and size.
static auto network (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent network toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto new_ () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button.
static auto new_ (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified location.
static auto new_ (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified location, and size.
static auto new_ (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified location, size, and name.
static auto new_ (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified and check_state.
static auto new_ (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified check_state, and location.
static auto new_ (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified check_state, location, and size.
static auto new_ (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified check_state, location, size, and name.
static auto new_ (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified three_state, and check_state.
static auto new_ (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified three_state, check_state, and location.
static auto new_ (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified three_state, check_state, location, and size.
static auto new_ (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified three_state, check_state, location, size, and name.
static auto new_ (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent.
static auto new_ (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, and location.
static auto new_ (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, location, and size.
static auto new_ (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, location, size, and name.
static auto new_ (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, and check_state.
static auto new_ (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, check_state, and location.
static auto new_ (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, check_state, location, and size.
static auto new_ (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, check_state, location, size, and name.
static auto new_ (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, three_state, and check_state.
static auto new_ (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, three_state, check_state, and location.
static auto new_ (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, three_state, check_state, location, and size.
static auto new_ (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent new_ toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto next () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button.
static auto next (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified location.
static auto next (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified location, and size.
static auto next (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified location, size, and name.
static auto next (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified and check_state.
static auto next (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified check_state, and location.
static auto next (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified check_state, location, and size.
static auto next (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified check_state, location, size, and name.
static auto next (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified three_state, and check_state.
static auto next (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified three_state, check_state, and location.
static auto next (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified three_state, check_state, location, and size.
static auto next (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified three_state, check_state, location, size, and name.
static auto next (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent.
static auto next (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, and location.
static auto next (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, location, and size.
static auto next (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, location, size, and name.
static auto next (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, and check_state.
static auto next (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, check_state, and location.
static auto next (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, check_state, location, and size.
static auto next (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, check_state, location, size, and name.
static auto next (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, three_state, and check_state.
static auto next (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, three_state, check_state, and location.
static auto next (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, three_state, check_state, location, and size.
static auto next (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent next toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto no () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button.
static auto no (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified location.
static auto no (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified location, and size.
static auto no (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified location, size, and name.
static auto no (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified and check_state.
static auto no (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified check_state, and location.
static auto no (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified check_state, location, and size.
static auto no (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified check_state, location, size, and name.
static auto no (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified three_state, and check_state.
static auto no (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified three_state, check_state, and location.
static auto no (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified three_state, check_state, location, and size.
static auto no (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified three_state, check_state, location, size, and name.
static auto no (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent.
static auto no (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, and location.
static auto no (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, location, and size.
static auto no (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, location, size, and name.
static auto no (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, and check_state.
static auto no (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, check_state, and location.
static auto no (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, check_state, location, and size.
static auto no (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, check_state, location, size, and name.
static auto no (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, three_state, and check_state.
static auto no (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, three_state, check_state, and location.
static auto no (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, three_state, check_state, location, and size.
static auto no (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent no toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto ok () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button.
static auto ok (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified location.
static auto ok (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified location, and size.
static auto ok (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified location, size, and name.
static auto ok (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified and check_state.
static auto ok (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified check_state, and location.
static auto ok (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified check_state, location, and size.
static auto ok (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified check_state, location, size, and name.
static auto ok (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified three_state, and check_state.
static auto ok (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified three_state, check_state, and location.
static auto ok (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified three_state, check_state, location, and size.
static auto ok (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified three_state, check_state, location, size, and name.
static auto ok (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent.
static auto ok (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, and location.
static auto ok (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, location, and size.
static auto ok (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, location, size, and name.
static auto ok (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, and check_state.
static auto ok (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, check_state, and location.
static auto ok (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, check_state, location, and size.
static auto ok (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, check_state, location, size, and name.
static auto ok (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, three_state, and check_state.
static auto ok (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, three_state, check_state, and location.
static auto ok (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, three_state, check_state, location, and size.
static auto ok (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent ok toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto open () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button.
static auto open (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified location.
static auto open (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified location, and size.
static auto open (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified location, size, and name.
static auto open (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified and check_state.
static auto open (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified check_state, and location.
static auto open (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified check_state, location, and size.
static auto open (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified check_state, location, size, and name.
static auto open (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified three_state, and check_state.
static auto open (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified three_state, check_state, and location.
static auto open (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified three_state, check_state, location, and size.
static auto open (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified three_state, check_state, location, size, and name.
static auto open (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent.
static auto open (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, and location.
static auto open (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, location, and size.
static auto open (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, location, size, and name.
static auto open (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, and check_state.
static auto open (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, check_state, and location.
static auto open (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, check_state, location, and size.
static auto open (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, check_state, location, size, and name.
static auto open (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, three_state, and check_state.
static auto open (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, three_state, check_state, and location.
static auto open (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, three_state, check_state, location, and size.
static auto open (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent open toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto options () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button.
static auto options (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified location.
static auto options (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified location, and size.
static auto options (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified location, size, and name.
static auto options (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified and check_state.
static auto options (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified check_state, and location.
static auto options (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified check_state, location, and size.
static auto options (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified check_state, location, size, and name.
static auto options (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified three_state, and check_state.
static auto options (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified three_state, check_state, and location.
static auto options (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified three_state, check_state, location, and size.
static auto options (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified three_state, check_state, location, size, and name.
static auto options (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent.
static auto options (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, and location.
static auto options (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, location, and size.
static auto options (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, location, size, and name.
static auto options (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, and check_state.
static auto options (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, check_state, and location.
static auto options (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, check_state, location, and size.
static auto options (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, check_state, location, size, and name.
static auto options (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, three_state, and check_state.
static auto options (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, three_state, check_state, and location.
static auto options (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, three_state, check_state, location, and size.
static auto options (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent options toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto paste () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button.
static auto paste (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified location.
static auto paste (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified location, and size.
static auto paste (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified location, size, and name.
static auto paste (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified and check_state.
static auto paste (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified check_state, and location.
static auto paste (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified check_state, location, and size.
static auto paste (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified check_state, location, size, and name.
static auto paste (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified three_state, and check_state.
static auto paste (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified three_state, check_state, and location.
static auto paste (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified three_state, check_state, location, and size.
static auto paste (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified three_state, check_state, location, size, and name.
static auto paste (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent.
static auto paste (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, and location.
static auto paste (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, location, and size.
static auto paste (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, location, size, and name.
static auto paste (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, and check_state.
static auto paste (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, check_state, and location.
static auto paste (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, check_state, location, and size.
static auto paste (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, check_state, location, size, and name.
static auto paste (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, three_state, and check_state.
static auto paste (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, three_state, check_state, and location.
static auto paste (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, three_state, check_state, location, and size.
static auto paste (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent paste toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto preferences () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button.
static auto preferences (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified location.
static auto preferences (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified location, and size.
static auto preferences (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified location, size, and name.
static auto preferences (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified and check_state.
static auto preferences (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified check_state, and location.
static auto preferences (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified check_state, location, and size.
static auto preferences (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified check_state, location, size, and name.
static auto preferences (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified three_state, and check_state.
static auto preferences (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified three_state, check_state, and location.
static auto preferences (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified three_state, check_state, location, and size.
static auto preferences (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified three_state, check_state, location, size, and name.
static auto preferences (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent.
static auto preferences (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, and location.
static auto preferences (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, location, and size.
static auto preferences (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, location, size, and name.
static auto preferences (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, and check_state.
static auto preferences (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, check_state, and location.
static auto preferences (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, check_state, location, and size.
static auto preferences (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, check_state, location, size, and name.
static auto preferences (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, three_state, and check_state.
static auto preferences (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, three_state, check_state, and location.
static auto preferences (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, three_state, check_state, location, and size.
static auto preferences (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent preferences toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto previous () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button.
static auto previous (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified location.
static auto previous (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified location, and size.
static auto previous (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified location, size, and name.
static auto previous (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified and check_state.
static auto previous (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified check_state, and location.
static auto previous (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified check_state, location, and size.
static auto previous (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified check_state, location, size, and name.
static auto previous (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified three_state, and check_state.
static auto previous (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified three_state, check_state, and location.
static auto previous (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified three_state, check_state, location, and size.
static auto previous (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified three_state, check_state, location, size, and name.
static auto previous (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent.
static auto previous (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, and location.
static auto previous (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, location, and size.
static auto previous (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, location, size, and name.
static auto previous (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, and check_state.
static auto previous (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, check_state, and location.
static auto previous (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, check_state, location, and size.
static auto previous (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, check_state, location, size, and name.
static auto previous (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, three_state, and check_state.
static auto previous (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, three_state, check_state, and location.
static auto previous (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, three_state, check_state, location, and size.
static auto previous (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent previous toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto print () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button.
static auto print (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified location.
static auto print (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified location, and size.
static auto print (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified location, size, and name.
static auto print (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified and check_state.
static auto print (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified check_state, and location.
static auto print (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified check_state, location, and size.
static auto print (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified check_state, location, size, and name.
static auto print (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified three_state, and check_state.
static auto print (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified three_state, check_state, and location.
static auto print (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified three_state, check_state, location, and size.
static auto print (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified three_state, check_state, location, size, and name.
static auto print (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent.
static auto print (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, and location.
static auto print (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, location, and size.
static auto print (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, location, size, and name.
static auto print (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, and check_state.
static auto print (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, check_state, and location.
static auto print (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, check_state, location, and size.
static auto print (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, check_state, location, size, and name.
static auto print (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, three_state, and check_state.
static auto print (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, three_state, check_state, and location.
static auto print (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, three_state, check_state, location, and size.
static auto print (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto print_preview () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button.
static auto print_preview (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified location.
static auto print_preview (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified location, and size.
static auto print_preview (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified location, size, and name.
static auto print_preview (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified and check_state.
static auto print_preview (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified check_state, and location.
static auto print_preview (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified check_state, location, and size.
static auto print_preview (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified check_state, location, size, and name.
static auto print_preview (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified three_state, and check_state.
static auto print_preview (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified three_state, check_state, and location.
static auto print_preview (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified three_state, check_state, location, and size.
static auto print_preview (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified three_state, check_state, location, size, and name.
static auto print_preview (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent.
static auto print_preview (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, and location.
static auto print_preview (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, location, and size.
static auto print_preview (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, location, size, and name.
static auto print_preview (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, and check_state.
static auto print_preview (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, check_state, and location.
static auto print_preview (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, check_state, location, and size.
static auto print_preview (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, check_state, location, size, and name.
static auto print_preview (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, three_state, and check_state.
static auto print_preview (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, three_state, check_state, and location.
static auto print_preview (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, three_state, check_state, location, and size.
static auto print_preview (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto properties () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button.
static auto properties (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified location.
static auto properties (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified location, and size.
static auto properties (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified location, size, and name.
static auto properties (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified and check_state.
static auto properties (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified check_state, and location.
static auto properties (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified check_state, location, and size.
static auto properties (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified check_state, location, size, and name.
static auto properties (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified three_state, and check_state.
static auto properties (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified three_state, check_state, and location.
static auto properties (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified three_state, check_state, location, and size.
static auto properties (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified three_state, check_state, location, size, and name.
static auto properties (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent.
static auto properties (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, and location.
static auto properties (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, location, and size.
static auto properties (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, location, size, and name.
static auto properties (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, and check_state.
static auto properties (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, check_state, and location.
static auto properties (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, check_state, location, and size.
static auto properties (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, check_state, location, size, and name.
static auto properties (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, three_state, and check_state.
static auto properties (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, three_state, check_state, and location.
static auto properties (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, three_state, check_state, location, and size.
static auto properties (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent properties toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto quit () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button.
static auto quit (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified location.
static auto quit (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified location, and size.
static auto quit (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified location, size, and name.
static auto quit (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified and check_state.
static auto quit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified check_state, and location.
static auto quit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified check_state, location, and size.
static auto quit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified check_state, location, size, and name.
static auto quit (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified three_state, and check_state.
static auto quit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified three_state, check_state, and location.
static auto quit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified three_state, check_state, location, and size.
static auto quit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified three_state, check_state, location, size, and name.
static auto quit (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent.
static auto quit (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, and location.
static auto quit (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, location, and size.
static auto quit (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, location, size, and name.
static auto quit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, and check_state.
static auto quit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, check_state, and location.
static auto quit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, check_state, location, and size.
static auto quit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, check_state, location, size, and name.
static auto quit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, three_state, and check_state.
static auto quit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, three_state, check_state, and location.
static auto quit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, three_state, check_state, location, and size.
static auto quit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent quit toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto redo () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button.
static auto redo (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified location.
static auto redo (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified location, and size.
static auto redo (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified location, size, and name.
static auto redo (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified and check_state.
static auto redo (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified check_state, and location.
static auto redo (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified check_state, location, and size.
static auto redo (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified check_state, location, size, and name.
static auto redo (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified three_state, and check_state.
static auto redo (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified three_state, check_state, and location.
static auto redo (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified three_state, check_state, location, and size.
static auto redo (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified three_state, check_state, location, size, and name.
static auto redo (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent.
static auto redo (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, and location.
static auto redo (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, location, and size.
static auto redo (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, location, size, and name.
static auto redo (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, and check_state.
static auto redo (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, check_state, and location.
static auto redo (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, check_state, location, and size.
static auto redo (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, check_state, location, size, and name.
static auto redo (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, three_state, and check_state.
static auto redo (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, three_state, check_state, and location.
static auto redo (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, three_state, check_state, location, and size.
static auto redo (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent redo toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto refresh () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button.
static auto refresh (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified location.
static auto refresh (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified location, and size.
static auto refresh (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified location, size, and name.
static auto refresh (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified and check_state.
static auto refresh (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified check_state, and location.
static auto refresh (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified check_state, location, and size.
static auto refresh (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified check_state, location, size, and name.
static auto refresh (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified three_state, and check_state.
static auto refresh (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified three_state, check_state, and location.
static auto refresh (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified three_state, check_state, location, and size.
static auto refresh (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified three_state, check_state, location, size, and name.
static auto refresh (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent.
static auto refresh (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, and location.
static auto refresh (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, location, and size.
static auto refresh (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, location, size, and name.
static auto refresh (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, and check_state.
static auto refresh (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, check_state, and location.
static auto refresh (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, check_state, location, and size.
static auto refresh (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, check_state, location, size, and name.
static auto refresh (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, three_state, and check_state.
static auto refresh (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, three_state, check_state, and location.
static auto refresh (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, three_state, check_state, location, and size.
static auto refresh (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent refresh toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto remove () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button.
static auto remove (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified location.
static auto remove (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified location, and size.
static auto remove (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified location, size, and name.
static auto remove (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified and check_state.
static auto remove (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified check_state, and location.
static auto remove (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified check_state, location, and size.
static auto remove (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified check_state, location, size, and name.
static auto remove (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified three_state, and check_state.
static auto remove (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified three_state, check_state, and location.
static auto remove (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified three_state, check_state, location, and size.
static auto remove (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified three_state, check_state, location, size, and name.
static auto remove (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent.
static auto remove (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, and location.
static auto remove (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, location, and size.
static auto remove (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, location, size, and name.
static auto remove (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, and check_state.
static auto remove (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, check_state, and location.
static auto remove (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, check_state, location, and size.
static auto remove (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, check_state, location, size, and name.
static auto remove (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, three_state, and check_state.
static auto remove (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, three_state, check_state, and location.
static auto remove (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, three_state, check_state, location, and size.
static auto remove (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent remove toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto replace () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button.
static auto replace (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified location.
static auto replace (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified location, and size.
static auto replace (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified location, size, and name.
static auto replace (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified and check_state.
static auto replace (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified check_state, and location.
static auto replace (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified check_state, location, and size.
static auto replace (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified check_state, location, size, and name.
static auto replace (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified three_state, and check_state.
static auto replace (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified three_state, check_state, and location.
static auto replace (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified three_state, check_state, location, and size.
static auto replace (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified three_state, check_state, location, size, and name.
static auto replace (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent.
static auto replace (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, and location.
static auto replace (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, location, and size.
static auto replace (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, location, size, and name.
static auto replace (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, and check_state.
static auto replace (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, check_state, and location.
static auto replace (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, check_state, location, and size.
static auto replace (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, check_state, location, size, and name.
static auto replace (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, three_state, and check_state.
static auto replace (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, three_state, check_state, and location.
static auto replace (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, three_state, check_state, location, and size.
static auto replace (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent replace toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto retry () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button.
static auto retry (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified location.
static auto retry (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified location, and size.
static auto retry (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified location, size, and name.
static auto retry (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified and check_state.
static auto retry (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified check_state, and location.
static auto retry (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified check_state, location, and size.
static auto retry (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified check_state, location, size, and name.
static auto retry (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified three_state, and check_state.
static auto retry (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified three_state, check_state, and location.
static auto retry (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified three_state, check_state, location, and size.
static auto retry (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified three_state, check_state, location, size, and name.
static auto retry (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent.
static auto retry (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, and location.
static auto retry (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, location, and size.
static auto retry (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, location, size, and name.
static auto retry (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, and check_state.
static auto retry (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, check_state, and location.
static auto retry (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, check_state, location, and size.
static auto retry (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, check_state, location, size, and name.
static auto retry (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, three_state, and check_state.
static auto retry (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, three_state, check_state, and location.
static auto retry (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, three_state, check_state, location, and size.
static auto retry (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent retry toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto revert_to_saved () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button.
static auto revert_to_saved (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified location.
static auto revert_to_saved (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified location, and size.
static auto revert_to_saved (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified location, size, and name.
static auto revert_to_saved (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified and check_state.
static auto revert_to_saved (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified check_state, and location.
static auto revert_to_saved (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified check_state, location, and size.
static auto revert_to_saved (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified check_state, location, size, and name.
static auto revert_to_saved (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified three_state, and check_state.
static auto revert_to_saved (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified three_state, check_state, and location.
static auto revert_to_saved (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified three_state, check_state, location, and size.
static auto revert_to_saved (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified three_state, check_state, location, size, and name.
static auto revert_to_saved (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent.
static auto revert_to_saved (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, and location.
static auto revert_to_saved (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, location, and size.
static auto revert_to_saved (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, location, size, and name.
static auto revert_to_saved (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, and check_state.
static auto revert_to_saved (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, check_state, and location.
static auto revert_to_saved (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, check_state, location, and size.
static auto revert_to_saved (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, check_state, location, size, and name.
static auto revert_to_saved (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, three_state, and check_state.
static auto revert_to_saved (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, three_state, check_state, and location.
static auto revert_to_saved (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, three_state, check_state, location, and size.
static auto revert_to_saved (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto save () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button.
static auto save (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified location.
static auto save (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified location, and size.
static auto save (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified location, size, and name.
static auto save (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified and check_state.
static auto save (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified check_state, and location.
static auto save (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified check_state, location, and size.
static auto save (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified check_state, location, size, and name.
static auto save (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified three_state, and check_state.
static auto save (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified three_state, check_state, and location.
static auto save (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified three_state, check_state, location, and size.
static auto save (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified three_state, check_state, location, size, and name.
static auto save (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent.
static auto save (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, and location.
static auto save (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, location, and size.
static auto save (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, location, size, and name.
static auto save (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, and check_state.
static auto save (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, check_state, and location.
static auto save (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, check_state, location, and size.
static auto save (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, check_state, location, size, and name.
static auto save (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, three_state, and check_state.
static auto save (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, three_state, check_state, and location.
static auto save (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, three_state, check_state, location, and size.
static auto save (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto save_as () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button.
static auto save_as (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified location.
static auto save_as (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified location, and size.
static auto save_as (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified location, size, and name.
static auto save_as (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified and check_state.
static auto save_as (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified check_state, and location.
static auto save_as (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified check_state, location, and size.
static auto save_as (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified check_state, location, size, and name.
static auto save_as (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified three_state, and check_state.
static auto save_as (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified three_state, check_state, and location.
static auto save_as (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified three_state, check_state, location, and size.
static auto save_as (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified three_state, check_state, location, size, and name.
static auto save_as (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent.
static auto save_as (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, and location.
static auto save_as (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, location, and size.
static auto save_as (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, location, size, and name.
static auto save_as (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, and check_state.
static auto save_as (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, check_state, and location.
static auto save_as (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, check_state, location, and size.
static auto save_as (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, check_state, location, size, and name.
static auto save_as (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, three_state, and check_state.
static auto save_as (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, three_state, check_state, and location.
static auto save_as (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, three_state, check_state, location, and size.
static auto save_as (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent save_as toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto search () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button.
static auto search (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified location.
static auto search (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified location, and size.
static auto search (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified location, size, and name.
static auto search (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified and check_state.
static auto search (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified check_state, and location.
static auto search (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified check_state, location, and size.
static auto search (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified check_state, location, size, and name.
static auto search (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified three_state, and check_state.
static auto search (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified three_state, check_state, and location.
static auto search (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified three_state, check_state, location, and size.
static auto search (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified three_state, check_state, location, size, and name.
static auto search (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent.
static auto search (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, and location.
static auto search (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, location, and size.
static auto search (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, location, size, and name.
static auto search (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, and check_state.
static auto search (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, check_state, and location.
static auto search (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, check_state, location, and size.
static auto search (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, check_state, location, size, and name.
static auto search (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, three_state, and check_state.
static auto search (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, three_state, check_state, and location.
static auto search (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, three_state, check_state, location, and size.
static auto search (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent search toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto select_all () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button.
static auto select_all (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified location.
static auto select_all (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified location, and size.
static auto select_all (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified location, size, and name.
static auto select_all (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified and check_state.
static auto select_all (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified check_state, and location.
static auto select_all (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified check_state, location, and size.
static auto select_all (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified check_state, location, size, and name.
static auto select_all (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified three_state, and check_state.
static auto select_all (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified three_state, check_state, and location.
static auto select_all (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified three_state, check_state, location, and size.
static auto select_all (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified three_state, check_state, location, size, and name.
static auto select_all (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent.
static auto select_all (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, and location.
static auto select_all (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, location, and size.
static auto select_all (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, location, size, and name.
static auto select_all (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, and check_state.
static auto select_all (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, check_state, and location.
static auto select_all (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, check_state, location, and size.
static auto select_all (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, check_state, location, size, and name.
static auto select_all (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, three_state, and check_state.
static auto select_all (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, three_state, check_state, and location.
static auto select_all (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, three_state, check_state, location, and size.
static auto select_all (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent select_all toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto settings () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button.
static auto settings (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified location.
static auto settings (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified location, and size.
static auto settings (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified location, size, and name.
static auto settings (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified and check_state.
static auto settings (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified check_state, and location.
static auto settings (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified check_state, location, and size.
static auto settings (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified check_state, location, size, and name.
static auto settings (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified three_state, and check_state.
static auto settings (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified three_state, check_state, and location.
static auto settings (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified three_state, check_state, location, and size.
static auto settings (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified three_state, check_state, location, size, and name.
static auto settings (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent.
static auto settings (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, and location.
static auto settings (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, location, and size.
static auto settings (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, location, size, and name.
static auto settings (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, and check_state.
static auto settings (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, check_state, and location.
static auto settings (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, check_state, location, and size.
static auto settings (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, check_state, location, size, and name.
static auto settings (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, three_state, and check_state.
static auto settings (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, three_state, check_state, and location.
static auto settings (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, three_state, check_state, location, and size.
static auto settings (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent settings toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto spell_check () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button.
static auto spell_check (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified location.
static auto spell_check (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified location, and size.
static auto spell_check (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified location, size, and name.
static auto spell_check (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified and check_state.
static auto spell_check (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified check_state, and location.
static auto spell_check (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified check_state, location, and size.
static auto spell_check (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified check_state, location, size, and name.
static auto spell_check (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified three_state, and check_state.
static auto spell_check (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified three_state, check_state, and location.
static auto spell_check (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified three_state, check_state, location, and size.
static auto spell_check (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified three_state, check_state, location, size, and name.
static auto spell_check (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent.
static auto spell_check (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, and location.
static auto spell_check (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, location, and size.
static auto spell_check (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, location, size, and name.
static auto spell_check (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, and check_state.
static auto spell_check (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, check_state, and location.
static auto spell_check (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, check_state, location, and size.
static auto spell_check (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, check_state, location, size, and name.
static auto spell_check (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, three_state, and check_state.
static auto spell_check (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, three_state, check_state, and location.
static auto spell_check (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, three_state, check_state, location, and size.
static auto spell_check (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto stop () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button.
static auto stop (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified location.
static auto stop (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified location, and size.
static auto stop (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified location, size, and name.
static auto stop (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified and check_state.
static auto stop (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified check_state, and location.
static auto stop (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified check_state, location, and size.
static auto stop (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified check_state, location, size, and name.
static auto stop (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified three_state, and check_state.
static auto stop (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified three_state, check_state, and location.
static auto stop (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified three_state, check_state, location, and size.
static auto stop (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified three_state, check_state, location, size, and name.
static auto stop (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent.
static auto stop (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, and location.
static auto stop (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, location, and size.
static auto stop (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, location, size, and name.
static auto stop (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, and check_state.
static auto stop (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, check_state, and location.
static auto stop (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, check_state, location, and size.
static auto stop (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, check_state, location, size, and name.
static auto stop (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, three_state, and check_state.
static auto stop (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, three_state, check_state, and location.
static auto stop (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, three_state, check_state, location, and size.
static auto stop (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent stop toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto strikeout () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button.
static auto strikeout (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified location.
static auto strikeout (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified location, and size.
static auto strikeout (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified location, size, and name.
static auto strikeout (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified and check_state.
static auto strikeout (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified check_state, and location.
static auto strikeout (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified check_state, location, and size.
static auto strikeout (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified check_state, location, size, and name.
static auto strikeout (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified three_state, and check_state.
static auto strikeout (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified three_state, check_state, and location.
static auto strikeout (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified three_state, check_state, location, and size.
static auto strikeout (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified three_state, check_state, location, size, and name.
static auto strikeout (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent.
static auto strikeout (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, and location.
static auto strikeout (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, location, and size.
static auto strikeout (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, location, size, and name.
static auto strikeout (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, and check_state.
static auto strikeout (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, check_state, and location.
static auto strikeout (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, check_state, location, and size.
static auto strikeout (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, check_state, location, size, and name.
static auto strikeout (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, three_state, and check_state.
static auto strikeout (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, three_state, check_state, and location.
static auto strikeout (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, three_state, check_state, location, and size.
static auto strikeout (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto tools () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button.
static auto tools (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified location.
static auto tools (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified location, and size.
static auto tools (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified location, size, and name.
static auto tools (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified and check_state.
static auto tools (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified check_state, and location.
static auto tools (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified check_state, location, and size.
static auto tools (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified check_state, location, size, and name.
static auto tools (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified three_state, and check_state.
static auto tools (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified three_state, check_state, and location.
static auto tools (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified three_state, check_state, location, and size.
static auto tools (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified three_state, check_state, location, size, and name.
static auto tools (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent.
static auto tools (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, and location.
static auto tools (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, location, and size.
static auto tools (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, location, size, and name.
static auto tools (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, and check_state.
static auto tools (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, check_state, and location.
static auto tools (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, check_state, location, and size.
static auto tools (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, check_state, location, size, and name.
static auto tools (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, three_state, and check_state.
static auto tools (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, three_state, check_state, and location.
static auto tools (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, three_state, check_state, location, and size.
static auto tools (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent tools toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto top () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button.
static auto top (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified location.
static auto top (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified location, and size.
static auto top (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified location, size, and name.
static auto top (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified and check_state.
static auto top (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified check_state, and location.
static auto top (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified check_state, location, and size.
static auto top (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified check_state, location, size, and name.
static auto top (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified three_state, and check_state.
static auto top (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified three_state, check_state, and location.
static auto top (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified three_state, check_state, location, and size.
static auto top (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified three_state, check_state, location, size, and name.
static auto top (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent.
static auto top (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, and location.
static auto top (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, location, and size.
static auto top (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, location, size, and name.
static auto top (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, and check_state.
static auto top (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, check_state, and location.
static auto top (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, check_state, location, and size.
static auto top (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, check_state, location, size, and name.
static auto top (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, three_state, and check_state.
static auto top (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, three_state, check_state, and location.
static auto top (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, three_state, check_state, location, and size.
static auto top (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent top toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto undelete () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button.
static auto undelete (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified location.
static auto undelete (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified location, and size.
static auto undelete (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified location, size, and name.
static auto undelete (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified and check_state.
static auto undelete (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified check_state, and location.
static auto undelete (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified check_state, location, and size.
static auto undelete (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified check_state, location, size, and name.
static auto undelete (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified three_state, and check_state.
static auto undelete (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified three_state, check_state, and location.
static auto undelete (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified three_state, check_state, location, and size.
static auto undelete (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified three_state, check_state, location, size, and name.
static auto undelete (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent.
static auto undelete (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, and location.
static auto undelete (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, location, and size.
static auto undelete (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, location, size, and name.
static auto undelete (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, and check_state.
static auto undelete (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, check_state, and location.
static auto undelete (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, check_state, location, and size.
static auto undelete (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, check_state, location, size, and name.
static auto undelete (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, three_state, and check_state.
static auto undelete (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, three_state, check_state, and location.
static auto undelete (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, three_state, check_state, location, and size.
static auto undelete (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undelete toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto underline () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button.
static auto underline (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified location.
static auto underline (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified location, and size.
static auto underline (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified location, size, and name.
static auto underline (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified and check_state.
static auto underline (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified check_state, and location.
static auto underline (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified check_state, location, and size.
static auto underline (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified check_state, location, size, and name.
static auto underline (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified three_state, and check_state.
static auto underline (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified three_state, check_state, and location.
static auto underline (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified three_state, check_state, location, and size.
static auto underline (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified three_state, check_state, location, size, and name.
static auto underline (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent.
static auto underline (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, and location.
static auto underline (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, location, and size.
static auto underline (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, location, size, and name.
static auto underline (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, and check_state.
static auto underline (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, check_state, and location.
static auto underline (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, check_state, location, and size.
static auto underline (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, check_state, location, size, and name.
static auto underline (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, three_state, and check_state.
static auto underline (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, three_state, check_state, and location.
static auto underline (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, three_state, check_state, location, and size.
static auto underline (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent underline toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto undo () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button.
static auto undo (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified location.
static auto undo (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified location, and size.
static auto undo (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified location, size, and name.
static auto undo (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified and check_state.
static auto undo (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified check_state, and location.
static auto undo (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified check_state, location, and size.
static auto undo (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified check_state, location, size, and name.
static auto undo (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified three_state, and check_state.
static auto undo (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified three_state, check_state, and location.
static auto undo (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified three_state, check_state, location, and size.
static auto undo (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified three_state, check_state, location, size, and name.
static auto undo (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent.
static auto undo (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, and location.
static auto undo (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, location, and size.
static auto undo (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, location, size, and name.
static auto undo (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, and check_state.
static auto undo (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, check_state, and location.
static auto undo (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, check_state, location, and size.
static auto undo (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, check_state, location, size, and name.
static auto undo (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, three_state, and check_state.
static auto undo (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, three_state, check_state, and location.
static auto undo (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, three_state, check_state, location, and size.
static auto undo (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent undo toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto unindent () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button.
static auto unindent (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified location.
static auto unindent (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified location, and size.
static auto unindent (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified location, size, and name.
static auto unindent (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified and check_state.
static auto unindent (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified check_state, and location.
static auto unindent (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified check_state, location, and size.
static auto unindent (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified check_state, location, size, and name.
static auto unindent (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified three_state, and check_state.
static auto unindent (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified three_state, check_state, and location.
static auto unindent (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified three_state, check_state, location, and size.
static auto unindent (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified three_state, check_state, location, size, and name.
static auto unindent (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent.
static auto unindent (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, and location.
static auto unindent (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, location, and size.
static auto unindent (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, location, size, and name.
static auto unindent (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, and check_state.
static auto unindent (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, check_state, and location.
static auto unindent (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, check_state, location, and size.
static auto unindent (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, check_state, location, size, and name.
static auto unindent (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, three_state, and check_state.
static auto unindent (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, three_state, check_state, and location.
static auto unindent (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, three_state, check_state, location, and size.
static auto unindent (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent unindent toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto up () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button.
static auto up (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified location.
static auto up (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified location, and size.
static auto up (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified location, size, and name.
static auto up (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified and check_state.
static auto up (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified check_state, and location.
static auto up (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified check_state, location, and size.
static auto up (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified check_state, location, size, and name.
static auto up (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified three_state, and check_state.
static auto up (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified three_state, check_state, and location.
static auto up (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified three_state, check_state, location, and size.
static auto up (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified three_state, check_state, location, size, and name.
static auto up (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent.
static auto up (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, and location.
static auto up (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, location, and size.
static auto up (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, location, size, and name.
static auto up (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, and check_state.
static auto up (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, check_state, and location.
static auto up (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, check_state, location, and size.
static auto up (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, check_state, location, size, and name.
static auto up (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, three_state, and check_state.
static auto up (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, three_state, check_state, and location.
static auto up (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, three_state, check_state, location, and size.
static auto up (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent up toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto view () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button.
static auto view (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified location.
static auto view (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified location, and size.
static auto view (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified location, size, and name.
static auto view (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified and check_state.
static auto view (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified check_state, and location.
static auto view (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified check_state, location, and size.
static auto view (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified check_state, location, size, and name.
static auto view (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified three_state, and check_state.
static auto view (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified three_state, check_state, and location.
static auto view (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified three_state, check_state, location, and size.
static auto view (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified three_state, check_state, location, size, and name.
static auto view (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent.
static auto view (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, and location.
static auto view (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, location, and size.
static auto view (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, location, size, and name.
static auto view (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, and check_state.
static auto view (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, check_state, and location.
static auto view (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, check_state, location, and size.
static auto view (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, check_state, location, size, and name.
static auto view (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, three_state, and check_state.
static auto view (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, three_state, check_state, and location.
static auto view (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, three_state, check_state, location, and size.
static auto view (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent view toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto window () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button.
static auto window (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified location.
static auto window (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified location, and size.
static auto window (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified location, size, and name.
static auto window (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified and check_state.
static auto window (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified check_state, and location.
static auto window (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified check_state, location, and size.
static auto window (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified check_state, location, size, and name.
static auto window (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified three_state, and check_state.
static auto window (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified three_state, check_state, and location.
static auto window (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified three_state, check_state, location, and size.
static auto window (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified three_state, check_state, location, size, and name.
static auto window (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent.
static auto window (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, and location.
static auto window (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, location, and size.
static auto window (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, location, size, and name.
static auto window (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, and check_state.
static auto window (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, check_state, and location.
static auto window (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, check_state, location, and size.
static auto window (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, check_state, location, size, and name.
static auto window (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, three_state, and check_state.
static auto window (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, three_state, check_state, and location.
static auto window (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, three_state, check_state, location, and size.
static auto window (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent window toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto yes () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button.
static auto yes (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified location.
static auto yes (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified location, and size.
static auto yes (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified location, size, and name.
static auto yes (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified and check_state.
static auto yes (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified check_state, and location.
static auto yes (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified check_state, location, and size.
static auto yes (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified check_state, location, size, and name.
static auto yes (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified three_state, and check_state.
static auto yes (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified three_state, check_state, and location.
static auto yes (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified three_state, check_state, location, and size.
static auto yes (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified three_state, check_state, location, size, and name.
static auto yes (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent.
static auto yes (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, and location.
static auto yes (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, location, and size.
static auto yes (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, location, size, and name.
static auto yes (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, and check_state.
static auto yes (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, check_state, and location.
static auto yes (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, check_state, location, and size.
static auto yes (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, check_state, location, size, and name.
static auto yes (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, three_state, and check_state.
static auto yes (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, three_state, check_state, and location.
static auto yes (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, three_state, check_state, location, and size.
static auto yes (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent yes toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto zoom_in () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button.
static auto zoom_in (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified location.
static auto zoom_in (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified location, and size.
static auto zoom_in (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified location, size, and name.
static auto zoom_in (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified and check_state.
static auto zoom_in (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified check_state, and location.
static auto zoom_in (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified check_state, location, and size.
static auto zoom_in (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified check_state, location, size, and name.
static auto zoom_in (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified three_state, and check_state.
static auto zoom_in (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified three_state, check_state, and location.
static auto zoom_in (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified three_state, check_state, location, and size.
static auto zoom_in (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified three_state, check_state, location, size, and name.
static auto zoom_in (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent.
static auto zoom_in (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, and location.
static auto zoom_in (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, location, and size.
static auto zoom_in (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, location, size, and name.
static auto zoom_in (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, and check_state.
static auto zoom_in (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, check_state, and location.
static auto zoom_in (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, check_state, location, and size.
static auto zoom_in (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, check_state, location, size, and name.
static auto zoom_in (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, three_state, and check_state.
static auto zoom_in (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, three_state, check_state, and location.
static auto zoom_in (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, three_state, check_state, location, and size.
static auto zoom_in (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto zoom_out () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button.
static auto zoom_out (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified location.
static auto zoom_out (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified location, and size.
static auto zoom_out (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified location, size, and name.
static auto zoom_out (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified and check_state.
static auto zoom_out (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified check_state, and location.
static auto zoom_out (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified check_state, location, and size.
static auto zoom_out (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified check_state, location, size, and name.
static auto zoom_out (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified three_state, and check_state.
static auto zoom_out (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified three_state, check_state, and location.
static auto zoom_out (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified three_state, check_state, location, and size.
static auto zoom_out (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified three_state, check_state, location, size, and name.
static auto zoom_out (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent.
static auto zoom_out (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, and location.
static auto zoom_out (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, location, and size.
static auto zoom_out (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, location, size, and name.
static auto zoom_out (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, and check_state.
static auto zoom_out (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, check_state, and location.
static auto zoom_out (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, check_state, location, and size.
static auto zoom_out (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, check_state, location, size, and name.
static auto zoom_out (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, three_state, and check_state.
static auto zoom_out (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, three_state, check_state, and location.
static auto zoom_out (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, three_state, check_state, location, and size.
static auto zoom_out (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, three_state, check_state, location, size, and name.
static auto zoom_to_fit () -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button.
static auto zoom_to_fit (const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified location.
static auto zoom_to_fit (const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified location, and size.
static auto zoom_to_fit (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified location, size, and name.
static auto zoom_to_fit (xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified and check_state.
static auto zoom_to_fit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified check_state, and location.
static auto zoom_to_fit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified check_state, location, and size.
static auto zoom_to_fit (xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified check_state, location, size, and name.
static auto zoom_to_fit (bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified three_state, and check_state.
static auto zoom_to_fit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified three_state, check_state, and location.
static auto zoom_to_fit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified three_state, check_state, location, and size.
static auto zoom_to_fit (bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified three_state, check_state, location, size, and name.
static auto zoom_to_fit (const xtd::forms::control &parent) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent.
static auto zoom_to_fit (const xtd::forms::control &parent, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, and location.
static auto zoom_to_fit (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, location, and size.
static auto zoom_to_fit (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, location, size, and name.
static auto zoom_to_fit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, and check_state.
static auto zoom_to_fit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, check_state, and location.
static auto zoom_to_fit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, check_state, location, and size.
static auto zoom_to_fit (const xtd::forms::control &parent, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, check_state, location, size, and name.
static auto zoom_to_fit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, three_state, and check_state.
static auto zoom_to_fit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, three_state, check_state, and location.
static auto zoom_to_fit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, three_state, check_state, location, and size.
static auto zoom_to_fit (const xtd::forms::control &parent, bool three_state, xtd::forms::check_state check_statecheck_state, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> xtd::forms::toggle_button
 Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, three_state, check_state, location, size, and name.

Member Function Documentation

◆ abort() [1/24]

auto xtd::forms::toggle_buttons::abort ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button.

Returns
The created toggle_button.

◆ abort() [2/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ abort() [3/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ abort() [4/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ abort() [5/24]

auto xtd::forms::toggle_buttons::abort ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ abort() [6/24]

auto xtd::forms::toggle_buttons::abort ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ abort() [7/24]

auto xtd::forms::toggle_buttons::abort ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ abort() [8/24]

auto xtd::forms::toggle_buttons::abort ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ abort() [9/24]

auto xtd::forms::toggle_buttons::abort ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ abort() [10/24]

auto xtd::forms::toggle_buttons::abort ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ abort() [11/24]

auto xtd::forms::toggle_buttons::abort ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ abort() [12/24]

auto xtd::forms::toggle_buttons::abort ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ abort() [13/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ abort() [14/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ abort() [15/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ abort() [16/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ abort() [17/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ abort() [18/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ abort() [19/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ abort() [20/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ abort() [21/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ abort() [22/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ abort() [23/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ abort() [24/24]

auto xtd::forms::toggle_buttons::abort ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent abort toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ about() [1/24]

auto xtd::forms::toggle_buttons::about ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button.

Returns
The created toggle_button.

◆ about() [2/24]

auto xtd::forms::toggle_buttons::about ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ about() [3/24]

auto xtd::forms::toggle_buttons::about ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ about() [4/24]

auto xtd::forms::toggle_buttons::about ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ about() [5/24]

auto xtd::forms::toggle_buttons::about ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ about() [6/24]

auto xtd::forms::toggle_buttons::about ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ about() [7/24]

auto xtd::forms::toggle_buttons::about ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ about() [8/24]

auto xtd::forms::toggle_buttons::about ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ about() [9/24]

auto xtd::forms::toggle_buttons::about ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ about() [10/24]

auto xtd::forms::toggle_buttons::about ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ about() [11/24]

auto xtd::forms::toggle_buttons::about ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ about() [12/24]

auto xtd::forms::toggle_buttons::about ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ about() [13/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ about() [14/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ about() [15/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ about() [16/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ about() [17/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ about() [18/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ about() [19/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ about() [20/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ about() [21/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ about() [22/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ about() [23/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ about() [24/24]

auto xtd::forms::toggle_buttons::about ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent about toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ actual_size() [1/24]

auto xtd::forms::toggle_buttons::actual_size ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button.

Returns
The created toggle_button.

◆ actual_size() [2/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ actual_size() [3/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ actual_size() [4/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ actual_size() [5/24]

auto xtd::forms::toggle_buttons::actual_size ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ actual_size() [6/24]

auto xtd::forms::toggle_buttons::actual_size ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ actual_size() [7/24]

auto xtd::forms::toggle_buttons::actual_size ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ actual_size() [8/24]

auto xtd::forms::toggle_buttons::actual_size ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ actual_size() [9/24]

auto xtd::forms::toggle_buttons::actual_size ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ actual_size() [10/24]

auto xtd::forms::toggle_buttons::actual_size ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ actual_size() [11/24]

auto xtd::forms::toggle_buttons::actual_size ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ actual_size() [12/24]

auto xtd::forms::toggle_buttons::actual_size ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ actual_size() [13/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ actual_size() [14/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ actual_size() [15/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ actual_size() [16/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ actual_size() [17/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ actual_size() [18/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ actual_size() [19/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ actual_size() [20/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ actual_size() [21/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ actual_size() [22/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ actual_size() [23/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ actual_size() [24/24]

auto xtd::forms::toggle_buttons::actual_size ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent actual_size toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ add() [1/24]

auto xtd::forms::toggle_buttons::add ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button.

Returns
The created toggle_button.

◆ add() [2/24]

auto xtd::forms::toggle_buttons::add ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ add() [3/24]

auto xtd::forms::toggle_buttons::add ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ add() [4/24]

auto xtd::forms::toggle_buttons::add ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ add() [5/24]

auto xtd::forms::toggle_buttons::add ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ add() [6/24]

auto xtd::forms::toggle_buttons::add ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ add() [7/24]

auto xtd::forms::toggle_buttons::add ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ add() [8/24]

auto xtd::forms::toggle_buttons::add ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ add() [9/24]

auto xtd::forms::toggle_buttons::add ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ add() [10/24]

auto xtd::forms::toggle_buttons::add ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ add() [11/24]

auto xtd::forms::toggle_buttons::add ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ add() [12/24]

auto xtd::forms::toggle_buttons::add ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ add() [13/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ add() [14/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ add() [15/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ add() [16/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ add() [17/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ add() [18/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ add() [19/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ add() [20/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ add() [21/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ add() [22/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ add() [23/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ add() [24/24]

auto xtd::forms::toggle_buttons::add ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent add toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ alignment() [1/24]

auto xtd::forms::toggle_buttons::alignment ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button.

Returns
The created toggle_button.

◆ alignment() [2/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ alignment() [3/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ alignment() [4/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ alignment() [5/24]

auto xtd::forms::toggle_buttons::alignment ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ alignment() [6/24]

auto xtd::forms::toggle_buttons::alignment ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ alignment() [7/24]

auto xtd::forms::toggle_buttons::alignment ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ alignment() [8/24]

auto xtd::forms::toggle_buttons::alignment ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ alignment() [9/24]

auto xtd::forms::toggle_buttons::alignment ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ alignment() [10/24]

auto xtd::forms::toggle_buttons::alignment ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ alignment() [11/24]

auto xtd::forms::toggle_buttons::alignment ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ alignment() [12/24]

auto xtd::forms::toggle_buttons::alignment ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ alignment() [13/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ alignment() [14/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ alignment() [15/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ alignment() [16/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ alignment() [17/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ alignment() [18/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ alignment() [19/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ alignment() [20/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ alignment() [21/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ alignment() [22/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ alignment() [23/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ alignment() [24/24]

auto xtd::forms::toggle_buttons::alignment ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent alignment toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_left() [1/24]

auto xtd::forms::toggle_buttons::align_left ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button.

Returns
The created toggle_button.

◆ align_left() [2/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_left() [3/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_left() [4/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_left() [5/24]

auto xtd::forms::toggle_buttons::align_left ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ align_left() [6/24]

auto xtd::forms::toggle_buttons::align_left ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_left() [7/24]

auto xtd::forms::toggle_buttons::align_left ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_left() [8/24]

auto xtd::forms::toggle_buttons::align_left ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_left() [9/24]

auto xtd::forms::toggle_buttons::align_left ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ align_left() [10/24]

auto xtd::forms::toggle_buttons::align_left ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_left() [11/24]

auto xtd::forms::toggle_buttons::align_left ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_left() [12/24]

auto xtd::forms::toggle_buttons::align_left ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_left() [13/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ align_left() [14/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_left() [15/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_left() [16/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_left() [17/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ align_left() [18/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_left() [19/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_left() [20/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_left() [21/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ align_left() [22/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_left() [23/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_left() [24/24]

auto xtd::forms::toggle_buttons::align_left ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_left toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_right() [1/24]

auto xtd::forms::toggle_buttons::align_right ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button.

Returns
The created toggle_button.

◆ align_right() [2/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_right() [3/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_right() [4/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_right() [5/24]

auto xtd::forms::toggle_buttons::align_right ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ align_right() [6/24]

auto xtd::forms::toggle_buttons::align_right ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_right() [7/24]

auto xtd::forms::toggle_buttons::align_right ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_right() [8/24]

auto xtd::forms::toggle_buttons::align_right ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_right() [9/24]

auto xtd::forms::toggle_buttons::align_right ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ align_right() [10/24]

auto xtd::forms::toggle_buttons::align_right ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_right() [11/24]

auto xtd::forms::toggle_buttons::align_right ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_right() [12/24]

auto xtd::forms::toggle_buttons::align_right ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_right() [13/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ align_right() [14/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_right() [15/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_right() [16/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_right() [17/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ align_right() [18/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_right() [19/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_right() [20/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ align_right() [21/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ align_right() [22/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ align_right() [23/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ align_right() [24/24]

auto xtd::forms::toggle_buttons::align_right ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent align_right toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ apply() [1/24]

auto xtd::forms::toggle_buttons::apply ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button.

Returns
The created toggle_button.

◆ apply() [2/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ apply() [3/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ apply() [4/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ apply() [5/24]

auto xtd::forms::toggle_buttons::apply ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ apply() [6/24]

auto xtd::forms::toggle_buttons::apply ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ apply() [7/24]

auto xtd::forms::toggle_buttons::apply ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ apply() [8/24]

auto xtd::forms::toggle_buttons::apply ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ apply() [9/24]

auto xtd::forms::toggle_buttons::apply ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ apply() [10/24]

auto xtd::forms::toggle_buttons::apply ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ apply() [11/24]

auto xtd::forms::toggle_buttons::apply ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ apply() [12/24]

auto xtd::forms::toggle_buttons::apply ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ apply() [13/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ apply() [14/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ apply() [15/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ apply() [16/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ apply() [17/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ apply() [18/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ apply() [19/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ apply() [20/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ apply() [21/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ apply() [22/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ apply() [23/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ apply() [24/24]

auto xtd::forms::toggle_buttons::apply ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent apply toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ascending() [1/24]

auto xtd::forms::toggle_buttons::ascending ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button.

Returns
The created toggle_button.

◆ ascending() [2/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ascending() [3/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ascending() [4/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ascending() [5/24]

auto xtd::forms::toggle_buttons::ascending ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ascending() [6/24]

auto xtd::forms::toggle_buttons::ascending ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ascending() [7/24]

auto xtd::forms::toggle_buttons::ascending ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ascending() [8/24]

auto xtd::forms::toggle_buttons::ascending ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ascending() [9/24]

auto xtd::forms::toggle_buttons::ascending ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ascending() [10/24]

auto xtd::forms::toggle_buttons::ascending ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ascending() [11/24]

auto xtd::forms::toggle_buttons::ascending ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ascending() [12/24]

auto xtd::forms::toggle_buttons::ascending ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ascending() [13/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ ascending() [14/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ascending() [15/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ascending() [16/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ascending() [17/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ascending() [18/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ascending() [19/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ascending() [20/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ascending() [21/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ascending() [22/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ascending() [23/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ascending() [24/24]

auto xtd::forms::toggle_buttons::ascending ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ascending toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ back() [1/24]

auto xtd::forms::toggle_buttons::back ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button.

Returns
The created toggle_button.

◆ back() [2/24]

auto xtd::forms::toggle_buttons::back ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ back() [3/24]

auto xtd::forms::toggle_buttons::back ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ back() [4/24]

auto xtd::forms::toggle_buttons::back ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ back() [5/24]

auto xtd::forms::toggle_buttons::back ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ back() [6/24]

auto xtd::forms::toggle_buttons::back ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ back() [7/24]

auto xtd::forms::toggle_buttons::back ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ back() [8/24]

auto xtd::forms::toggle_buttons::back ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ back() [9/24]

auto xtd::forms::toggle_buttons::back ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ back() [10/24]

auto xtd::forms::toggle_buttons::back ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ back() [11/24]

auto xtd::forms::toggle_buttons::back ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ back() [12/24]

auto xtd::forms::toggle_buttons::back ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ back() [13/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ back() [14/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ back() [15/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ back() [16/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ back() [17/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ back() [18/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ back() [19/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ back() [20/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ back() [21/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ back() [22/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ back() [23/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ back() [24/24]

auto xtd::forms::toggle_buttons::back ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent back toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bold() [1/24]

auto xtd::forms::toggle_buttons::bold ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button.

Returns
The created toggle_button.

◆ bold() [2/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bold() [3/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bold() [4/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bold() [5/24]

auto xtd::forms::toggle_buttons::bold ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ bold() [6/24]

auto xtd::forms::toggle_buttons::bold ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bold() [7/24]

auto xtd::forms::toggle_buttons::bold ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bold() [8/24]

auto xtd::forms::toggle_buttons::bold ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bold() [9/24]

auto xtd::forms::toggle_buttons::bold ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ bold() [10/24]

auto xtd::forms::toggle_buttons::bold ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bold() [11/24]

auto xtd::forms::toggle_buttons::bold ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bold() [12/24]

auto xtd::forms::toggle_buttons::bold ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bold() [13/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ bold() [14/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bold() [15/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bold() [16/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bold() [17/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ bold() [18/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bold() [19/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bold() [20/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bold() [21/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ bold() [22/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bold() [23/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bold() [24/24]

auto xtd::forms::toggle_buttons::bold ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bold toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bottom() [1/24]

auto xtd::forms::toggle_buttons::bottom ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button.

Returns
The created toggle_button.

◆ bottom() [2/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bottom() [3/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bottom() [4/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bottom() [5/24]

auto xtd::forms::toggle_buttons::bottom ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ bottom() [6/24]

auto xtd::forms::toggle_buttons::bottom ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bottom() [7/24]

auto xtd::forms::toggle_buttons::bottom ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bottom() [8/24]

auto xtd::forms::toggle_buttons::bottom ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bottom() [9/24]

auto xtd::forms::toggle_buttons::bottom ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ bottom() [10/24]

auto xtd::forms::toggle_buttons::bottom ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bottom() [11/24]

auto xtd::forms::toggle_buttons::bottom ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bottom() [12/24]

auto xtd::forms::toggle_buttons::bottom ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bottom() [13/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ bottom() [14/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bottom() [15/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bottom() [16/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bottom() [17/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ bottom() [18/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bottom() [19/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bottom() [20/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ bottom() [21/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ bottom() [22/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ bottom() [23/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ bottom() [24/24]

auto xtd::forms::toggle_buttons::bottom ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent bottom toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cancel() [1/24]

auto xtd::forms::toggle_buttons::cancel ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button.

Returns
The created toggle_button.

◆ cancel() [2/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cancel() [3/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cancel() [4/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cancel() [5/24]

auto xtd::forms::toggle_buttons::cancel ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cancel() [6/24]

auto xtd::forms::toggle_buttons::cancel ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cancel() [7/24]

auto xtd::forms::toggle_buttons::cancel ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cancel() [8/24]

auto xtd::forms::toggle_buttons::cancel ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cancel() [9/24]

auto xtd::forms::toggle_buttons::cancel ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cancel() [10/24]

auto xtd::forms::toggle_buttons::cancel ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cancel() [11/24]

auto xtd::forms::toggle_buttons::cancel ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cancel() [12/24]

auto xtd::forms::toggle_buttons::cancel ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cancel() [13/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ cancel() [14/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cancel() [15/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cancel() [16/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cancel() [17/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cancel() [18/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cancel() [19/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cancel() [20/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cancel() [21/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cancel() [22/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cancel() [23/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cancel() [24/24]

auto xtd::forms::toggle_buttons::cancel ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cancel toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cdrom() [1/24]

auto xtd::forms::toggle_buttons::cdrom ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button.

Returns
The created toggle_button.

◆ cdrom() [2/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cdrom() [3/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cdrom() [4/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cdrom() [5/24]

auto xtd::forms::toggle_buttons::cdrom ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cdrom() [6/24]

auto xtd::forms::toggle_buttons::cdrom ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cdrom() [7/24]

auto xtd::forms::toggle_buttons::cdrom ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cdrom() [8/24]

auto xtd::forms::toggle_buttons::cdrom ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cdrom() [9/24]

auto xtd::forms::toggle_buttons::cdrom ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cdrom() [10/24]

auto xtd::forms::toggle_buttons::cdrom ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cdrom() [11/24]

auto xtd::forms::toggle_buttons::cdrom ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cdrom() [12/24]

auto xtd::forms::toggle_buttons::cdrom ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cdrom() [13/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ cdrom() [14/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cdrom() [15/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cdrom() [16/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cdrom() [17/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cdrom() [18/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cdrom() [19/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cdrom() [20/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cdrom() [21/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cdrom() [22/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cdrom() [23/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cdrom() [24/24]

auto xtd::forms::toggle_buttons::cdrom ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cdrom toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ centered() [1/24]

auto xtd::forms::toggle_buttons::centered ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button.

Returns
The created toggle_button.

◆ centered() [2/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ centered() [3/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ centered() [4/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ centered() [5/24]

auto xtd::forms::toggle_buttons::centered ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ centered() [6/24]

auto xtd::forms::toggle_buttons::centered ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ centered() [7/24]

auto xtd::forms::toggle_buttons::centered ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ centered() [8/24]

auto xtd::forms::toggle_buttons::centered ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ centered() [9/24]

auto xtd::forms::toggle_buttons::centered ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ centered() [10/24]

auto xtd::forms::toggle_buttons::centered ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ centered() [11/24]

auto xtd::forms::toggle_buttons::centered ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ centered() [12/24]

auto xtd::forms::toggle_buttons::centered ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ centered() [13/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ centered() [14/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ centered() [15/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ centered() [16/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ centered() [17/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ centered() [18/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ centered() [19/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ centered() [20/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ centered() [21/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ centered() [22/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ centered() [23/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ centered() [24/24]

auto xtd::forms::toggle_buttons::centered ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent centered toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ clear() [1/24]

auto xtd::forms::toggle_buttons::clear ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button.

Returns
The created toggle_button.

◆ clear() [2/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ clear() [3/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ clear() [4/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ clear() [5/24]

auto xtd::forms::toggle_buttons::clear ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ clear() [6/24]

auto xtd::forms::toggle_buttons::clear ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ clear() [7/24]

auto xtd::forms::toggle_buttons::clear ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ clear() [8/24]

auto xtd::forms::toggle_buttons::clear ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ clear() [9/24]

auto xtd::forms::toggle_buttons::clear ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ clear() [10/24]

auto xtd::forms::toggle_buttons::clear ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ clear() [11/24]

auto xtd::forms::toggle_buttons::clear ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ clear() [12/24]

auto xtd::forms::toggle_buttons::clear ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ clear() [13/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ clear() [14/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ clear() [15/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ clear() [16/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ clear() [17/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ clear() [18/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ clear() [19/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ clear() [20/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ clear() [21/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ clear() [22/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ clear() [23/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ clear() [24/24]

auto xtd::forms::toggle_buttons::clear ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent clear toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ close() [1/24]

auto xtd::forms::toggle_buttons::close ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button.

Returns
The created toggle_button.

◆ close() [2/24]

auto xtd::forms::toggle_buttons::close ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ close() [3/24]

auto xtd::forms::toggle_buttons::close ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ close() [4/24]

auto xtd::forms::toggle_buttons::close ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ close() [5/24]

auto xtd::forms::toggle_buttons::close ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ close() [6/24]

auto xtd::forms::toggle_buttons::close ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ close() [7/24]

auto xtd::forms::toggle_buttons::close ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ close() [8/24]

auto xtd::forms::toggle_buttons::close ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ close() [9/24]

auto xtd::forms::toggle_buttons::close ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ close() [10/24]

auto xtd::forms::toggle_buttons::close ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ close() [11/24]

auto xtd::forms::toggle_buttons::close ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ close() [12/24]

auto xtd::forms::toggle_buttons::close ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ close() [13/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ close() [14/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ close() [15/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ close() [16/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ close() [17/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ close() [18/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ close() [19/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ close() [20/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ close() [21/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ close() [22/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ close() [23/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ close() [24/24]

auto xtd::forms::toggle_buttons::close ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent close toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ color() [1/24]

auto xtd::forms::toggle_buttons::color ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button.

Returns
The created toggle_button.

◆ color() [2/24]

auto xtd::forms::toggle_buttons::color ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ color() [3/24]

auto xtd::forms::toggle_buttons::color ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ color() [4/24]

auto xtd::forms::toggle_buttons::color ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ color() [5/24]

auto xtd::forms::toggle_buttons::color ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ color() [6/24]

auto xtd::forms::toggle_buttons::color ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ color() [7/24]

auto xtd::forms::toggle_buttons::color ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ color() [8/24]

auto xtd::forms::toggle_buttons::color ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ color() [9/24]

auto xtd::forms::toggle_buttons::color ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ color() [10/24]

auto xtd::forms::toggle_buttons::color ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ color() [11/24]

auto xtd::forms::toggle_buttons::color ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ color() [12/24]

auto xtd::forms::toggle_buttons::color ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ color() [13/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ color() [14/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ color() [15/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ color() [16/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ color() [17/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ color() [18/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ color() [19/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ color() [20/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ color() [21/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ color() [22/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ color() [23/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ color() [24/24]

auto xtd::forms::toggle_buttons::color ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent color toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ contents() [1/24]

auto xtd::forms::toggle_buttons::contents ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button.

Returns
The created toggle_button.

◆ contents() [2/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ contents() [3/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ contents() [4/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ contents() [5/24]

auto xtd::forms::toggle_buttons::contents ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ contents() [6/24]

auto xtd::forms::toggle_buttons::contents ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ contents() [7/24]

auto xtd::forms::toggle_buttons::contents ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ contents() [8/24]

auto xtd::forms::toggle_buttons::contents ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ contents() [9/24]

auto xtd::forms::toggle_buttons::contents ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ contents() [10/24]

auto xtd::forms::toggle_buttons::contents ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ contents() [11/24]

auto xtd::forms::toggle_buttons::contents ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ contents() [12/24]

auto xtd::forms::toggle_buttons::contents ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ contents() [13/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ contents() [14/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ contents() [15/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ contents() [16/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ contents() [17/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ contents() [18/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ contents() [19/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ contents() [20/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ contents() [21/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ contents() [22/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ contents() [23/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ contents() [24/24]

auto xtd::forms::toggle_buttons::contents ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent contents toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ convert() [1/24]

auto xtd::forms::toggle_buttons::convert ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button.

Returns
The created toggle_button.

◆ convert() [2/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ convert() [3/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ convert() [4/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ convert() [5/24]

auto xtd::forms::toggle_buttons::convert ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ convert() [6/24]

auto xtd::forms::toggle_buttons::convert ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ convert() [7/24]

auto xtd::forms::toggle_buttons::convert ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ convert() [8/24]

auto xtd::forms::toggle_buttons::convert ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ convert() [9/24]

auto xtd::forms::toggle_buttons::convert ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ convert() [10/24]

auto xtd::forms::toggle_buttons::convert ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ convert() [11/24]

auto xtd::forms::toggle_buttons::convert ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ convert() [12/24]

auto xtd::forms::toggle_buttons::convert ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ convert() [13/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ convert() [14/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ convert() [15/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ convert() [16/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ convert() [17/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ convert() [18/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ convert() [19/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ convert() [20/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ convert() [21/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ convert() [22/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ convert() [23/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ convert() [24/24]

auto xtd::forms::toggle_buttons::convert ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent convert toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ copy() [1/24]

auto xtd::forms::toggle_buttons::copy ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button.

Returns
The created toggle_button.

◆ copy() [2/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ copy() [3/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ copy() [4/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ copy() [5/24]

auto xtd::forms::toggle_buttons::copy ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ copy() [6/24]

auto xtd::forms::toggle_buttons::copy ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ copy() [7/24]

auto xtd::forms::toggle_buttons::copy ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ copy() [8/24]

auto xtd::forms::toggle_buttons::copy ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ copy() [9/24]

auto xtd::forms::toggle_buttons::copy ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ copy() [10/24]

auto xtd::forms::toggle_buttons::copy ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ copy() [11/24]

auto xtd::forms::toggle_buttons::copy ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ copy() [12/24]

auto xtd::forms::toggle_buttons::copy ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ copy() [13/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ copy() [14/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ copy() [15/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ copy() [16/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ copy() [17/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ copy() [18/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ copy() [19/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ copy() [20/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ copy() [21/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ copy() [22/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ copy() [23/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ copy() [24/24]

auto xtd::forms::toggle_buttons::copy ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent copy toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ customize() [1/24]

auto xtd::forms::toggle_buttons::customize ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button.

Returns
The created toggle_button.

◆ customize() [2/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ customize() [3/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ customize() [4/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ customize() [5/24]

auto xtd::forms::toggle_buttons::customize ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ customize() [6/24]

auto xtd::forms::toggle_buttons::customize ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ customize() [7/24]

auto xtd::forms::toggle_buttons::customize ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ customize() [8/24]

auto xtd::forms::toggle_buttons::customize ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ customize() [9/24]

auto xtd::forms::toggle_buttons::customize ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ customize() [10/24]

auto xtd::forms::toggle_buttons::customize ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ customize() [11/24]

auto xtd::forms::toggle_buttons::customize ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ customize() [12/24]

auto xtd::forms::toggle_buttons::customize ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ customize() [13/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ customize() [14/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ customize() [15/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ customize() [16/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ customize() [17/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ customize() [18/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ customize() [19/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ customize() [20/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ customize() [21/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ customize() [22/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ customize() [23/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ customize() [24/24]

auto xtd::forms::toggle_buttons::customize ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent customize toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cut() [1/24]

auto xtd::forms::toggle_buttons::cut ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button.

Returns
The created toggle_button.

◆ cut() [2/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cut() [3/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cut() [4/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cut() [5/24]

auto xtd::forms::toggle_buttons::cut ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cut() [6/24]

auto xtd::forms::toggle_buttons::cut ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cut() [7/24]

auto xtd::forms::toggle_buttons::cut ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cut() [8/24]

auto xtd::forms::toggle_buttons::cut ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cut() [9/24]

auto xtd::forms::toggle_buttons::cut ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cut() [10/24]

auto xtd::forms::toggle_buttons::cut ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cut() [11/24]

auto xtd::forms::toggle_buttons::cut ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cut() [12/24]

auto xtd::forms::toggle_buttons::cut ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cut() [13/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ cut() [14/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cut() [15/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cut() [16/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cut() [17/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cut() [18/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cut() [19/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cut() [20/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ cut() [21/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ cut() [22/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ cut() [23/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ cut() [24/24]

auto xtd::forms::toggle_buttons::cut ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent cut toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ del() [1/24]

auto xtd::forms::toggle_buttons::del ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button.

Returns
The created toggle_button.

◆ del() [2/24]

auto xtd::forms::toggle_buttons::del ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ del() [3/24]

auto xtd::forms::toggle_buttons::del ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ del() [4/24]

auto xtd::forms::toggle_buttons::del ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ del() [5/24]

auto xtd::forms::toggle_buttons::del ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ del() [6/24]

auto xtd::forms::toggle_buttons::del ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ del() [7/24]

auto xtd::forms::toggle_buttons::del ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ del() [8/24]

auto xtd::forms::toggle_buttons::del ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ del() [9/24]

auto xtd::forms::toggle_buttons::del ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ del() [10/24]

auto xtd::forms::toggle_buttons::del ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ del() [11/24]

auto xtd::forms::toggle_buttons::del ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ del() [12/24]

auto xtd::forms::toggle_buttons::del ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ del() [13/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ del() [14/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ del() [15/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ del() [16/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ del() [17/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ del() [18/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ del() [19/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ del() [20/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ del() [21/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ del() [22/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ del() [23/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ del() [24/24]

auto xtd::forms::toggle_buttons::del ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent del toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ descending() [1/24]

auto xtd::forms::toggle_buttons::descending ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button.

Returns
The created toggle_button.

◆ descending() [2/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ descending() [3/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ descending() [4/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ descending() [5/24]

auto xtd::forms::toggle_buttons::descending ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ descending() [6/24]

auto xtd::forms::toggle_buttons::descending ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ descending() [7/24]

auto xtd::forms::toggle_buttons::descending ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ descending() [8/24]

auto xtd::forms::toggle_buttons::descending ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ descending() [9/24]

auto xtd::forms::toggle_buttons::descending ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ descending() [10/24]

auto xtd::forms::toggle_buttons::descending ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ descending() [11/24]

auto xtd::forms::toggle_buttons::descending ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ descending() [12/24]

auto xtd::forms::toggle_buttons::descending ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ descending() [13/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ descending() [14/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ descending() [15/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ descending() [16/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ descending() [17/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ descending() [18/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ descending() [19/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ descending() [20/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ descending() [21/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ descending() [22/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ descending() [23/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ descending() [24/24]

auto xtd::forms::toggle_buttons::descending ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent descending toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ down() [1/24]

auto xtd::forms::toggle_buttons::down ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button.

Returns
The created toggle_button.

◆ down() [2/24]

auto xtd::forms::toggle_buttons::down ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ down() [3/24]

auto xtd::forms::toggle_buttons::down ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ down() [4/24]

auto xtd::forms::toggle_buttons::down ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ down() [5/24]

auto xtd::forms::toggle_buttons::down ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ down() [6/24]

auto xtd::forms::toggle_buttons::down ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ down() [7/24]

auto xtd::forms::toggle_buttons::down ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ down() [8/24]

auto xtd::forms::toggle_buttons::down ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ down() [9/24]

auto xtd::forms::toggle_buttons::down ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ down() [10/24]

auto xtd::forms::toggle_buttons::down ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ down() [11/24]

auto xtd::forms::toggle_buttons::down ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ down() [12/24]

auto xtd::forms::toggle_buttons::down ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ down() [13/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ down() [14/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ down() [15/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ down() [16/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ down() [17/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ down() [18/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ down() [19/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ down() [20/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ down() [21/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ down() [22/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ down() [23/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ down() [24/24]

auto xtd::forms::toggle_buttons::down ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent down toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ edit() [1/24]

auto xtd::forms::toggle_buttons::edit ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button.

Returns
The created toggle_button.

◆ edit() [2/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ edit() [3/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ edit() [4/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ edit() [5/24]

auto xtd::forms::toggle_buttons::edit ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ edit() [6/24]

auto xtd::forms::toggle_buttons::edit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ edit() [7/24]

auto xtd::forms::toggle_buttons::edit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ edit() [8/24]

auto xtd::forms::toggle_buttons::edit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ edit() [9/24]

auto xtd::forms::toggle_buttons::edit ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ edit() [10/24]

auto xtd::forms::toggle_buttons::edit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ edit() [11/24]

auto xtd::forms::toggle_buttons::edit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ edit() [12/24]

auto xtd::forms::toggle_buttons::edit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ edit() [13/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ edit() [14/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ edit() [15/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ edit() [16/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ edit() [17/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ edit() [18/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ edit() [19/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ edit() [20/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ edit() [21/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ edit() [22/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ edit() [23/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ edit() [24/24]

auto xtd::forms::toggle_buttons::edit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent edit toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ execute() [1/24]

auto xtd::forms::toggle_buttons::execute ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button.

Returns
The created toggle_button.

◆ execute() [2/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ execute() [3/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ execute() [4/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ execute() [5/24]

auto xtd::forms::toggle_buttons::execute ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ execute() [6/24]

auto xtd::forms::toggle_buttons::execute ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ execute() [7/24]

auto xtd::forms::toggle_buttons::execute ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ execute() [8/24]

auto xtd::forms::toggle_buttons::execute ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ execute() [9/24]

auto xtd::forms::toggle_buttons::execute ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ execute() [10/24]

auto xtd::forms::toggle_buttons::execute ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ execute() [11/24]

auto xtd::forms::toggle_buttons::execute ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ execute() [12/24]

auto xtd::forms::toggle_buttons::execute ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ execute() [13/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ execute() [14/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ execute() [15/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ execute() [16/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ execute() [17/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ execute() [18/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ execute() [19/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ execute() [20/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ execute() [21/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ execute() [22/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ execute() [23/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ execute() [24/24]

auto xtd::forms::toggle_buttons::execute ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent execute toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ exit() [1/24]

auto xtd::forms::toggle_buttons::exit ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button.

Returns
The created toggle_button.

◆ exit() [2/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ exit() [3/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ exit() [4/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ exit() [5/24]

auto xtd::forms::toggle_buttons::exit ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ exit() [6/24]

auto xtd::forms::toggle_buttons::exit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ exit() [7/24]

auto xtd::forms::toggle_buttons::exit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ exit() [8/24]

auto xtd::forms::toggle_buttons::exit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ exit() [9/24]

auto xtd::forms::toggle_buttons::exit ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ exit() [10/24]

auto xtd::forms::toggle_buttons::exit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ exit() [11/24]

auto xtd::forms::toggle_buttons::exit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ exit() [12/24]

auto xtd::forms::toggle_buttons::exit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ exit() [13/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ exit() [14/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ exit() [15/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ exit() [16/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ exit() [17/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ exit() [18/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ exit() [19/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ exit() [20/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ exit() [21/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ exit() [22/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ exit() [23/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ exit() [24/24]

auto xtd::forms::toggle_buttons::exit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent exit toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ file() [1/24]

auto xtd::forms::toggle_buttons::file ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button.

Returns
The created toggle_button.

◆ file() [2/24]

auto xtd::forms::toggle_buttons::file ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ file() [3/24]

auto xtd::forms::toggle_buttons::file ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ file() [4/24]

auto xtd::forms::toggle_buttons::file ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ file() [5/24]

auto xtd::forms::toggle_buttons::file ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ file() [6/24]

auto xtd::forms::toggle_buttons::file ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ file() [7/24]

auto xtd::forms::toggle_buttons::file ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ file() [8/24]

auto xtd::forms::toggle_buttons::file ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ file() [9/24]

auto xtd::forms::toggle_buttons::file ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ file() [10/24]

auto xtd::forms::toggle_buttons::file ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ file() [11/24]

auto xtd::forms::toggle_buttons::file ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ file() [12/24]

auto xtd::forms::toggle_buttons::file ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ file() [13/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ file() [14/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ file() [15/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ file() [16/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ file() [17/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ file() [18/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ file() [19/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ file() [20/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ file() [21/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ file() [22/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ file() [23/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ file() [24/24]

auto xtd::forms::toggle_buttons::file ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent file toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ find() [1/24]

auto xtd::forms::toggle_buttons::find ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button.

Returns
The created toggle_button.

◆ find() [2/24]

auto xtd::forms::toggle_buttons::find ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ find() [3/24]

auto xtd::forms::toggle_buttons::find ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ find() [4/24]

auto xtd::forms::toggle_buttons::find ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ find() [5/24]

auto xtd::forms::toggle_buttons::find ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ find() [6/24]

auto xtd::forms::toggle_buttons::find ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ find() [7/24]

auto xtd::forms::toggle_buttons::find ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ find() [8/24]

auto xtd::forms::toggle_buttons::find ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ find() [9/24]

auto xtd::forms::toggle_buttons::find ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ find() [10/24]

auto xtd::forms::toggle_buttons::find ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ find() [11/24]

auto xtd::forms::toggle_buttons::find ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ find() [12/24]

auto xtd::forms::toggle_buttons::find ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ find() [13/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ find() [14/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ find() [15/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ find() [16/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ find() [17/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ find() [18/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ find() [19/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ find() [20/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ find() [21/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ find() [22/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ find() [23/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ find() [24/24]

auto xtd::forms::toggle_buttons::find ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent find toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ first() [1/24]

auto xtd::forms::toggle_buttons::first ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button.

Returns
The created toggle_button.

◆ first() [2/24]

auto xtd::forms::toggle_buttons::first ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ first() [3/24]

auto xtd::forms::toggle_buttons::first ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ first() [4/24]

auto xtd::forms::toggle_buttons::first ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ first() [5/24]

auto xtd::forms::toggle_buttons::first ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ first() [6/24]

auto xtd::forms::toggle_buttons::first ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ first() [7/24]

auto xtd::forms::toggle_buttons::first ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ first() [8/24]

auto xtd::forms::toggle_buttons::first ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ first() [9/24]

auto xtd::forms::toggle_buttons::first ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ first() [10/24]

auto xtd::forms::toggle_buttons::first ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ first() [11/24]

auto xtd::forms::toggle_buttons::first ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ first() [12/24]

auto xtd::forms::toggle_buttons::first ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ first() [13/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ first() [14/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ first() [15/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ first() [16/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ first() [17/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ first() [18/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ first() [19/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ first() [20/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ first() [21/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ first() [22/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ first() [23/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ first() [24/24]

auto xtd::forms::toggle_buttons::first ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent first toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ floppy() [1/24]

auto xtd::forms::toggle_buttons::floppy ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button.

Returns
The created toggle_button.

◆ floppy() [2/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ floppy() [3/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ floppy() [4/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ floppy() [5/24]

auto xtd::forms::toggle_buttons::floppy ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ floppy() [6/24]

auto xtd::forms::toggle_buttons::floppy ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ floppy() [7/24]

auto xtd::forms::toggle_buttons::floppy ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ floppy() [8/24]

auto xtd::forms::toggle_buttons::floppy ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ floppy() [9/24]

auto xtd::forms::toggle_buttons::floppy ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ floppy() [10/24]

auto xtd::forms::toggle_buttons::floppy ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ floppy() [11/24]

auto xtd::forms::toggle_buttons::floppy ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ floppy() [12/24]

auto xtd::forms::toggle_buttons::floppy ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ floppy() [13/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ floppy() [14/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ floppy() [15/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ floppy() [16/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ floppy() [17/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ floppy() [18/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ floppy() [19/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ floppy() [20/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ floppy() [21/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ floppy() [22/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ floppy() [23/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ floppy() [24/24]

auto xtd::forms::toggle_buttons::floppy ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent floppy toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ font() [1/24]

auto xtd::forms::toggle_buttons::font ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button.

Returns
The created toggle_button.

◆ font() [2/24]

auto xtd::forms::toggle_buttons::font ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ font() [3/24]

auto xtd::forms::toggle_buttons::font ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ font() [4/24]

auto xtd::forms::toggle_buttons::font ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ font() [5/24]

auto xtd::forms::toggle_buttons::font ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ font() [6/24]

auto xtd::forms::toggle_buttons::font ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ font() [7/24]

auto xtd::forms::toggle_buttons::font ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ font() [8/24]

auto xtd::forms::toggle_buttons::font ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ font() [9/24]

auto xtd::forms::toggle_buttons::font ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ font() [10/24]

auto xtd::forms::toggle_buttons::font ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ font() [11/24]

auto xtd::forms::toggle_buttons::font ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ font() [12/24]

auto xtd::forms::toggle_buttons::font ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ font() [13/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ font() [14/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ font() [15/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ font() [16/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ font() [17/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ font() [18/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ font() [19/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ font() [20/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ font() [21/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ font() [22/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ font() [23/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ font() [24/24]

auto xtd::forms::toggle_buttons::font ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent font toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ forward() [1/24]

auto xtd::forms::toggle_buttons::forward ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button.

Returns
The created toggle_button.

◆ forward() [2/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ forward() [3/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ forward() [4/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ forward() [5/24]

auto xtd::forms::toggle_buttons::forward ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ forward() [6/24]

auto xtd::forms::toggle_buttons::forward ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ forward() [7/24]

auto xtd::forms::toggle_buttons::forward ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ forward() [8/24]

auto xtd::forms::toggle_buttons::forward ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ forward() [9/24]

auto xtd::forms::toggle_buttons::forward ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ forward() [10/24]

auto xtd::forms::toggle_buttons::forward ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ forward() [11/24]

auto xtd::forms::toggle_buttons::forward ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ forward() [12/24]

auto xtd::forms::toggle_buttons::forward ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ forward() [13/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ forward() [14/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ forward() [15/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ forward() [16/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ forward() [17/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ forward() [18/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ forward() [19/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ forward() [20/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ forward() [21/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ forward() [22/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ forward() [23/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ forward() [24/24]

auto xtd::forms::toggle_buttons::forward ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent forward toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ harddisk() [1/24]

auto xtd::forms::toggle_buttons::harddisk ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button.

Returns
The created toggle_button.

◆ harddisk() [2/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ harddisk() [3/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ harddisk() [4/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ harddisk() [5/24]

auto xtd::forms::toggle_buttons::harddisk ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ harddisk() [6/24]

auto xtd::forms::toggle_buttons::harddisk ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ harddisk() [7/24]

auto xtd::forms::toggle_buttons::harddisk ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ harddisk() [8/24]

auto xtd::forms::toggle_buttons::harddisk ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ harddisk() [9/24]

auto xtd::forms::toggle_buttons::harddisk ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ harddisk() [10/24]

auto xtd::forms::toggle_buttons::harddisk ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ harddisk() [11/24]

auto xtd::forms::toggle_buttons::harddisk ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ harddisk() [12/24]

auto xtd::forms::toggle_buttons::harddisk ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ harddisk() [13/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ harddisk() [14/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ harddisk() [15/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ harddisk() [16/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ harddisk() [17/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ harddisk() [18/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ harddisk() [19/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ harddisk() [20/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ harddisk() [21/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ harddisk() [22/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ harddisk() [23/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ harddisk() [24/24]

auto xtd::forms::toggle_buttons::harddisk ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent harddisk toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ help() [1/24]

auto xtd::forms::toggle_buttons::help ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button.

Returns
The created toggle_button.

◆ help() [2/24]

auto xtd::forms::toggle_buttons::help ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ help() [3/24]

auto xtd::forms::toggle_buttons::help ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ help() [4/24]

auto xtd::forms::toggle_buttons::help ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ help() [5/24]

auto xtd::forms::toggle_buttons::help ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ help() [6/24]

auto xtd::forms::toggle_buttons::help ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ help() [7/24]

auto xtd::forms::toggle_buttons::help ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ help() [8/24]

auto xtd::forms::toggle_buttons::help ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ help() [9/24]

auto xtd::forms::toggle_buttons::help ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ help() [10/24]

auto xtd::forms::toggle_buttons::help ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ help() [11/24]

auto xtd::forms::toggle_buttons::help ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ help() [12/24]

auto xtd::forms::toggle_buttons::help ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ help() [13/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ help() [14/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ help() [15/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ help() [16/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ help() [17/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ help() [18/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ help() [19/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ help() [20/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ help() [21/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ help() [22/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ help() [23/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ help() [24/24]

auto xtd::forms::toggle_buttons::help ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent help toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ home() [1/24]

auto xtd::forms::toggle_buttons::home ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button.

Returns
The created toggle_button.

◆ home() [2/24]

auto xtd::forms::toggle_buttons::home ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ home() [3/24]

auto xtd::forms::toggle_buttons::home ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ home() [4/24]

auto xtd::forms::toggle_buttons::home ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ home() [5/24]

auto xtd::forms::toggle_buttons::home ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ home() [6/24]

auto xtd::forms::toggle_buttons::home ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ home() [7/24]

auto xtd::forms::toggle_buttons::home ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ home() [8/24]

auto xtd::forms::toggle_buttons::home ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ home() [9/24]

auto xtd::forms::toggle_buttons::home ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ home() [10/24]

auto xtd::forms::toggle_buttons::home ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ home() [11/24]

auto xtd::forms::toggle_buttons::home ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ home() [12/24]

auto xtd::forms::toggle_buttons::home ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ home() [13/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ home() [14/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ home() [15/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ home() [16/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ home() [17/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ home() [18/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ home() [19/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ home() [20/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ home() [21/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ home() [22/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ home() [23/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ home() [24/24]

auto xtd::forms::toggle_buttons::home ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent home toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ignore() [1/24]

auto xtd::forms::toggle_buttons::ignore ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button.

Returns
The created toggle_button.

◆ ignore() [2/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ignore() [3/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ignore() [4/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ignore() [5/24]

auto xtd::forms::toggle_buttons::ignore ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ignore() [6/24]

auto xtd::forms::toggle_buttons::ignore ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ignore() [7/24]

auto xtd::forms::toggle_buttons::ignore ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ignore() [8/24]

auto xtd::forms::toggle_buttons::ignore ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ignore() [9/24]

auto xtd::forms::toggle_buttons::ignore ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ignore() [10/24]

auto xtd::forms::toggle_buttons::ignore ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ignore() [11/24]

auto xtd::forms::toggle_buttons::ignore ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ignore() [12/24]

auto xtd::forms::toggle_buttons::ignore ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ignore() [13/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ ignore() [14/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ignore() [15/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ignore() [16/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ignore() [17/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ignore() [18/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ignore() [19/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ignore() [20/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ignore() [21/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ignore() [22/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ignore() [23/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ignore() [24/24]

auto xtd::forms::toggle_buttons::ignore ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ignore toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ indent() [1/24]

auto xtd::forms::toggle_buttons::indent ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button.

Returns
The created toggle_button.

◆ indent() [2/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ indent() [3/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ indent() [4/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ indent() [5/24]

auto xtd::forms::toggle_buttons::indent ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ indent() [6/24]

auto xtd::forms::toggle_buttons::indent ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ indent() [7/24]

auto xtd::forms::toggle_buttons::indent ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ indent() [8/24]

auto xtd::forms::toggle_buttons::indent ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ indent() [9/24]

auto xtd::forms::toggle_buttons::indent ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ indent() [10/24]

auto xtd::forms::toggle_buttons::indent ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ indent() [11/24]

auto xtd::forms::toggle_buttons::indent ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ indent() [12/24]

auto xtd::forms::toggle_buttons::indent ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ indent() [13/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ indent() [14/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ indent() [15/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ indent() [16/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ indent() [17/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ indent() [18/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ indent() [19/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ indent() [20/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ indent() [21/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ indent() [22/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ indent() [23/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ indent() [24/24]

auto xtd::forms::toggle_buttons::indent ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent indent toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ index() [1/24]

auto xtd::forms::toggle_buttons::index ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button.

Returns
The created toggle_button.

◆ index() [2/24]

auto xtd::forms::toggle_buttons::index ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ index() [3/24]

auto xtd::forms::toggle_buttons::index ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ index() [4/24]

auto xtd::forms::toggle_buttons::index ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ index() [5/24]

auto xtd::forms::toggle_buttons::index ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ index() [6/24]

auto xtd::forms::toggle_buttons::index ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ index() [7/24]

auto xtd::forms::toggle_buttons::index ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ index() [8/24]

auto xtd::forms::toggle_buttons::index ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ index() [9/24]

auto xtd::forms::toggle_buttons::index ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ index() [10/24]

auto xtd::forms::toggle_buttons::index ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ index() [11/24]

auto xtd::forms::toggle_buttons::index ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ index() [12/24]

auto xtd::forms::toggle_buttons::index ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ index() [13/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ index() [14/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ index() [15/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ index() [16/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ index() [17/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ index() [18/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ index() [19/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ index() [20/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ index() [21/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ index() [22/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ index() [23/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ index() [24/24]

auto xtd::forms::toggle_buttons::index ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent index toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ info() [1/24]

auto xtd::forms::toggle_buttons::info ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button.

Returns
The created toggle_button.

◆ info() [2/24]

auto xtd::forms::toggle_buttons::info ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ info() [3/24]

auto xtd::forms::toggle_buttons::info ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ info() [4/24]

auto xtd::forms::toggle_buttons::info ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ info() [5/24]

auto xtd::forms::toggle_buttons::info ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ info() [6/24]

auto xtd::forms::toggle_buttons::info ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ info() [7/24]

auto xtd::forms::toggle_buttons::info ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ info() [8/24]

auto xtd::forms::toggle_buttons::info ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ info() [9/24]

auto xtd::forms::toggle_buttons::info ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ info() [10/24]

auto xtd::forms::toggle_buttons::info ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ info() [11/24]

auto xtd::forms::toggle_buttons::info ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ info() [12/24]

auto xtd::forms::toggle_buttons::info ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ info() [13/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ info() [14/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ info() [15/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ info() [16/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ info() [17/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ info() [18/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ info() [19/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ info() [20/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ info() [21/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ info() [22/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ info() [23/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ info() [24/24]

auto xtd::forms::toggle_buttons::info ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent info toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ italic() [1/24]

auto xtd::forms::toggle_buttons::italic ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button.

Returns
The created toggle_button.

◆ italic() [2/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ italic() [3/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ italic() [4/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ italic() [5/24]

auto xtd::forms::toggle_buttons::italic ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ italic() [6/24]

auto xtd::forms::toggle_buttons::italic ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ italic() [7/24]

auto xtd::forms::toggle_buttons::italic ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ italic() [8/24]

auto xtd::forms::toggle_buttons::italic ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ italic() [9/24]

auto xtd::forms::toggle_buttons::italic ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ italic() [10/24]

auto xtd::forms::toggle_buttons::italic ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ italic() [11/24]

auto xtd::forms::toggle_buttons::italic ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ italic() [12/24]

auto xtd::forms::toggle_buttons::italic ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ italic() [13/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ italic() [14/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ italic() [15/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ italic() [16/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ italic() [17/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ italic() [18/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ italic() [19/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ italic() [20/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ italic() [21/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ italic() [22/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ italic() [23/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ italic() [24/24]

auto xtd::forms::toggle_buttons::italic ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent italic toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ justified() [1/24]

auto xtd::forms::toggle_buttons::justified ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button.

Returns
The created toggle_button.

◆ justified() [2/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ justified() [3/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ justified() [4/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ justified() [5/24]

auto xtd::forms::toggle_buttons::justified ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ justified() [6/24]

auto xtd::forms::toggle_buttons::justified ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ justified() [7/24]

auto xtd::forms::toggle_buttons::justified ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ justified() [8/24]

auto xtd::forms::toggle_buttons::justified ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ justified() [9/24]

auto xtd::forms::toggle_buttons::justified ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ justified() [10/24]

auto xtd::forms::toggle_buttons::justified ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ justified() [11/24]

auto xtd::forms::toggle_buttons::justified ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ justified() [12/24]

auto xtd::forms::toggle_buttons::justified ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ justified() [13/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ justified() [14/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ justified() [15/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ justified() [16/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ justified() [17/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ justified() [18/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ justified() [19/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ justified() [20/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ justified() [21/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ justified() [22/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ justified() [23/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ justified() [24/24]

auto xtd::forms::toggle_buttons::justified ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent justified toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ jump_to() [1/24]

auto xtd::forms::toggle_buttons::jump_to ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button.

Returns
The created toggle_button.

◆ jump_to() [2/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ jump_to() [3/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ jump_to() [4/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ jump_to() [5/24]

auto xtd::forms::toggle_buttons::jump_to ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ jump_to() [6/24]

auto xtd::forms::toggle_buttons::jump_to ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ jump_to() [7/24]

auto xtd::forms::toggle_buttons::jump_to ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ jump_to() [8/24]

auto xtd::forms::toggle_buttons::jump_to ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ jump_to() [9/24]

auto xtd::forms::toggle_buttons::jump_to ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ jump_to() [10/24]

auto xtd::forms::toggle_buttons::jump_to ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ jump_to() [11/24]

auto xtd::forms::toggle_buttons::jump_to ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ jump_to() [12/24]

auto xtd::forms::toggle_buttons::jump_to ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ jump_to() [13/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ jump_to() [14/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ jump_to() [15/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ jump_to() [16/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ jump_to() [17/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ jump_to() [18/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ jump_to() [19/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ jump_to() [20/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ jump_to() [21/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ jump_to() [22/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ jump_to() [23/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ jump_to() [24/24]

auto xtd::forms::toggle_buttons::jump_to ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent jump_to toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ last() [1/24]

auto xtd::forms::toggle_buttons::last ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button.

Returns
The created toggle_button.

◆ last() [2/24]

auto xtd::forms::toggle_buttons::last ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ last() [3/24]

auto xtd::forms::toggle_buttons::last ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ last() [4/24]

auto xtd::forms::toggle_buttons::last ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ last() [5/24]

auto xtd::forms::toggle_buttons::last ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ last() [6/24]

auto xtd::forms::toggle_buttons::last ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ last() [7/24]

auto xtd::forms::toggle_buttons::last ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ last() [8/24]

auto xtd::forms::toggle_buttons::last ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ last() [9/24]

auto xtd::forms::toggle_buttons::last ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ last() [10/24]

auto xtd::forms::toggle_buttons::last ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ last() [11/24]

auto xtd::forms::toggle_buttons::last ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ last() [12/24]

auto xtd::forms::toggle_buttons::last ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ last() [13/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ last() [14/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ last() [15/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ last() [16/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ last() [17/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ last() [18/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ last() [19/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ last() [20/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ last() [21/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ last() [22/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ last() [23/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ last() [24/24]

auto xtd::forms::toggle_buttons::last ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent last toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ network() [1/24]

auto xtd::forms::toggle_buttons::network ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button.

Returns
The created toggle_button.

◆ network() [2/24]

auto xtd::forms::toggle_buttons::network ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ network() [3/24]

auto xtd::forms::toggle_buttons::network ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ network() [4/24]

auto xtd::forms::toggle_buttons::network ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ network() [5/24]

auto xtd::forms::toggle_buttons::network ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ network() [6/24]

auto xtd::forms::toggle_buttons::network ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ network() [7/24]

auto xtd::forms::toggle_buttons::network ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ network() [8/24]

auto xtd::forms::toggle_buttons::network ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ network() [9/24]

auto xtd::forms::toggle_buttons::network ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ network() [10/24]

auto xtd::forms::toggle_buttons::network ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ network() [11/24]

auto xtd::forms::toggle_buttons::network ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ network() [12/24]

auto xtd::forms::toggle_buttons::network ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ network() [13/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ network() [14/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ network() [15/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ network() [16/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ network() [17/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ network() [18/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ network() [19/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ network() [20/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ network() [21/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ network() [22/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ network() [23/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ network() [24/24]

auto xtd::forms::toggle_buttons::network ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent network toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ new_() [1/24]

auto xtd::forms::toggle_buttons::new_ ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button.

Returns
The created toggle_button.

◆ new_() [2/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ new_() [3/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ new_() [4/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ new_() [5/24]

auto xtd::forms::toggle_buttons::new_ ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ new_() [6/24]

auto xtd::forms::toggle_buttons::new_ ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ new_() [7/24]

auto xtd::forms::toggle_buttons::new_ ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ new_() [8/24]

auto xtd::forms::toggle_buttons::new_ ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ new_() [9/24]

auto xtd::forms::toggle_buttons::new_ ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ new_() [10/24]

auto xtd::forms::toggle_buttons::new_ ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ new_() [11/24]

auto xtd::forms::toggle_buttons::new_ ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ new_() [12/24]

auto xtd::forms::toggle_buttons::new_ ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ new_() [13/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ new_() [14/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ new_() [15/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ new_() [16/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ new_() [17/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ new_() [18/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ new_() [19/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ new_() [20/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ new_() [21/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ new_() [22/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ new_() [23/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ new_() [24/24]

auto xtd::forms::toggle_buttons::new_ ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent new_ toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ next() [1/24]

auto xtd::forms::toggle_buttons::next ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button.

Returns
The created toggle_button.

◆ next() [2/24]

auto xtd::forms::toggle_buttons::next ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ next() [3/24]

auto xtd::forms::toggle_buttons::next ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ next() [4/24]

auto xtd::forms::toggle_buttons::next ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ next() [5/24]

auto xtd::forms::toggle_buttons::next ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ next() [6/24]

auto xtd::forms::toggle_buttons::next ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ next() [7/24]

auto xtd::forms::toggle_buttons::next ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ next() [8/24]

auto xtd::forms::toggle_buttons::next ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ next() [9/24]

auto xtd::forms::toggle_buttons::next ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ next() [10/24]

auto xtd::forms::toggle_buttons::next ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ next() [11/24]

auto xtd::forms::toggle_buttons::next ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ next() [12/24]

auto xtd::forms::toggle_buttons::next ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ next() [13/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ next() [14/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ next() [15/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ next() [16/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ next() [17/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ next() [18/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ next() [19/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ next() [20/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ next() [21/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ next() [22/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ next() [23/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ next() [24/24]

auto xtd::forms::toggle_buttons::next ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent next toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ no() [1/24]

auto xtd::forms::toggle_buttons::no ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button.

Returns
The created toggle_button.

◆ no() [2/24]

auto xtd::forms::toggle_buttons::no ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ no() [3/24]

auto xtd::forms::toggle_buttons::no ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ no() [4/24]

auto xtd::forms::toggle_buttons::no ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ no() [5/24]

auto xtd::forms::toggle_buttons::no ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ no() [6/24]

auto xtd::forms::toggle_buttons::no ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ no() [7/24]

auto xtd::forms::toggle_buttons::no ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ no() [8/24]

auto xtd::forms::toggle_buttons::no ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ no() [9/24]

auto xtd::forms::toggle_buttons::no ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ no() [10/24]

auto xtd::forms::toggle_buttons::no ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ no() [11/24]

auto xtd::forms::toggle_buttons::no ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ no() [12/24]

auto xtd::forms::toggle_buttons::no ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ no() [13/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ no() [14/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ no() [15/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ no() [16/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ no() [17/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ no() [18/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ no() [19/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ no() [20/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ no() [21/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ no() [22/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ no() [23/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ no() [24/24]

auto xtd::forms::toggle_buttons::no ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent no toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ok() [1/24]

auto xtd::forms::toggle_buttons::ok ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button.

Returns
The created toggle_button.

◆ ok() [2/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ok() [3/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ok() [4/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ok() [5/24]

auto xtd::forms::toggle_buttons::ok ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ok() [6/24]

auto xtd::forms::toggle_buttons::ok ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ok() [7/24]

auto xtd::forms::toggle_buttons::ok ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ok() [8/24]

auto xtd::forms::toggle_buttons::ok ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ok() [9/24]

auto xtd::forms::toggle_buttons::ok ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ok() [10/24]

auto xtd::forms::toggle_buttons::ok ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ok() [11/24]

auto xtd::forms::toggle_buttons::ok ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ok() [12/24]

auto xtd::forms::toggle_buttons::ok ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ok() [13/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ ok() [14/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ok() [15/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ok() [16/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ok() [17/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ok() [18/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ok() [19/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ok() [20/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ ok() [21/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ ok() [22/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ ok() [23/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ ok() [24/24]

auto xtd::forms::toggle_buttons::ok ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent ok toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ open() [1/24]

auto xtd::forms::toggle_buttons::open ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button.

Returns
The created toggle_button.

◆ open() [2/24]

auto xtd::forms::toggle_buttons::open ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ open() [3/24]

auto xtd::forms::toggle_buttons::open ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ open() [4/24]

auto xtd::forms::toggle_buttons::open ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ open() [5/24]

auto xtd::forms::toggle_buttons::open ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ open() [6/24]

auto xtd::forms::toggle_buttons::open ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ open() [7/24]

auto xtd::forms::toggle_buttons::open ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ open() [8/24]

auto xtd::forms::toggle_buttons::open ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ open() [9/24]

auto xtd::forms::toggle_buttons::open ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ open() [10/24]

auto xtd::forms::toggle_buttons::open ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ open() [11/24]

auto xtd::forms::toggle_buttons::open ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ open() [12/24]

auto xtd::forms::toggle_buttons::open ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ open() [13/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ open() [14/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ open() [15/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ open() [16/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ open() [17/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ open() [18/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ open() [19/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ open() [20/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ open() [21/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ open() [22/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ open() [23/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ open() [24/24]

auto xtd::forms::toggle_buttons::open ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent open toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ options() [1/24]

auto xtd::forms::toggle_buttons::options ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button.

Returns
The created toggle_button.

◆ options() [2/24]

auto xtd::forms::toggle_buttons::options ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ options() [3/24]

auto xtd::forms::toggle_buttons::options ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ options() [4/24]

auto xtd::forms::toggle_buttons::options ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ options() [5/24]

auto xtd::forms::toggle_buttons::options ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ options() [6/24]

auto xtd::forms::toggle_buttons::options ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ options() [7/24]

auto xtd::forms::toggle_buttons::options ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ options() [8/24]

auto xtd::forms::toggle_buttons::options ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ options() [9/24]

auto xtd::forms::toggle_buttons::options ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ options() [10/24]

auto xtd::forms::toggle_buttons::options ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ options() [11/24]

auto xtd::forms::toggle_buttons::options ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ options() [12/24]

auto xtd::forms::toggle_buttons::options ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ options() [13/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ options() [14/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ options() [15/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ options() [16/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ options() [17/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ options() [18/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ options() [19/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ options() [20/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ options() [21/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ options() [22/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ options() [23/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ options() [24/24]

auto xtd::forms::toggle_buttons::options ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent options toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ paste() [1/24]

auto xtd::forms::toggle_buttons::paste ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button.

Returns
The created toggle_button.

◆ paste() [2/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ paste() [3/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ paste() [4/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ paste() [5/24]

auto xtd::forms::toggle_buttons::paste ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ paste() [6/24]

auto xtd::forms::toggle_buttons::paste ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ paste() [7/24]

auto xtd::forms::toggle_buttons::paste ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ paste() [8/24]

auto xtd::forms::toggle_buttons::paste ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ paste() [9/24]

auto xtd::forms::toggle_buttons::paste ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ paste() [10/24]

auto xtd::forms::toggle_buttons::paste ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ paste() [11/24]

auto xtd::forms::toggle_buttons::paste ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ paste() [12/24]

auto xtd::forms::toggle_buttons::paste ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ paste() [13/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ paste() [14/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ paste() [15/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ paste() [16/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ paste() [17/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ paste() [18/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ paste() [19/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ paste() [20/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ paste() [21/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ paste() [22/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ paste() [23/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ paste() [24/24]

auto xtd::forms::toggle_buttons::paste ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent paste toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ preferences() [1/24]

auto xtd::forms::toggle_buttons::preferences ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button.

Returns
The created toggle_button.

◆ preferences() [2/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ preferences() [3/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ preferences() [4/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ preferences() [5/24]

auto xtd::forms::toggle_buttons::preferences ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ preferences() [6/24]

auto xtd::forms::toggle_buttons::preferences ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ preferences() [7/24]

auto xtd::forms::toggle_buttons::preferences ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ preferences() [8/24]

auto xtd::forms::toggle_buttons::preferences ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ preferences() [9/24]

auto xtd::forms::toggle_buttons::preferences ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ preferences() [10/24]

auto xtd::forms::toggle_buttons::preferences ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ preferences() [11/24]

auto xtd::forms::toggle_buttons::preferences ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ preferences() [12/24]

auto xtd::forms::toggle_buttons::preferences ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ preferences() [13/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ preferences() [14/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ preferences() [15/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ preferences() [16/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ preferences() [17/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ preferences() [18/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ preferences() [19/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ preferences() [20/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ preferences() [21/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ preferences() [22/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ preferences() [23/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ preferences() [24/24]

auto xtd::forms::toggle_buttons::preferences ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent preferences toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ previous() [1/24]

auto xtd::forms::toggle_buttons::previous ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button.

Returns
The created toggle_button.

◆ previous() [2/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ previous() [3/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ previous() [4/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ previous() [5/24]

auto xtd::forms::toggle_buttons::previous ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ previous() [6/24]

auto xtd::forms::toggle_buttons::previous ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ previous() [7/24]

auto xtd::forms::toggle_buttons::previous ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ previous() [8/24]

auto xtd::forms::toggle_buttons::previous ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ previous() [9/24]

auto xtd::forms::toggle_buttons::previous ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ previous() [10/24]

auto xtd::forms::toggle_buttons::previous ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ previous() [11/24]

auto xtd::forms::toggle_buttons::previous ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ previous() [12/24]

auto xtd::forms::toggle_buttons::previous ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ previous() [13/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ previous() [14/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ previous() [15/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ previous() [16/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ previous() [17/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ previous() [18/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ previous() [19/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ previous() [20/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ previous() [21/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ previous() [22/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ previous() [23/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ previous() [24/24]

auto xtd::forms::toggle_buttons::previous ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent previous toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print() [1/24]

auto xtd::forms::toggle_buttons::print ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button.

Returns
The created toggle_button.

◆ print() [2/24]

auto xtd::forms::toggle_buttons::print ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print() [3/24]

auto xtd::forms::toggle_buttons::print ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print() [4/24]

auto xtd::forms::toggle_buttons::print ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print() [5/24]

auto xtd::forms::toggle_buttons::print ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ print() [6/24]

auto xtd::forms::toggle_buttons::print ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print() [7/24]

auto xtd::forms::toggle_buttons::print ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print() [8/24]

auto xtd::forms::toggle_buttons::print ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print() [9/24]

auto xtd::forms::toggle_buttons::print ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ print() [10/24]

auto xtd::forms::toggle_buttons::print ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print() [11/24]

auto xtd::forms::toggle_buttons::print ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print() [12/24]

auto xtd::forms::toggle_buttons::print ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print() [13/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ print() [14/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print() [15/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print() [16/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print() [17/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ print() [18/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print() [19/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print() [20/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print() [21/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ print() [22/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print() [23/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print() [24/24]

auto xtd::forms::toggle_buttons::print ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print_preview() [1/24]

auto xtd::forms::toggle_buttons::print_preview ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button.

Returns
The created toggle_button.

◆ print_preview() [2/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print_preview() [3/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print_preview() [4/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print_preview() [5/24]

auto xtd::forms::toggle_buttons::print_preview ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ print_preview() [6/24]

auto xtd::forms::toggle_buttons::print_preview ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print_preview() [7/24]

auto xtd::forms::toggle_buttons::print_preview ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print_preview() [8/24]

auto xtd::forms::toggle_buttons::print_preview ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print_preview() [9/24]

auto xtd::forms::toggle_buttons::print_preview ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ print_preview() [10/24]

auto xtd::forms::toggle_buttons::print_preview ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print_preview() [11/24]

auto xtd::forms::toggle_buttons::print_preview ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print_preview() [12/24]

auto xtd::forms::toggle_buttons::print_preview ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print_preview() [13/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ print_preview() [14/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print_preview() [15/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print_preview() [16/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print_preview() [17/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ print_preview() [18/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print_preview() [19/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print_preview() [20/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ print_preview() [21/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ print_preview() [22/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ print_preview() [23/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ print_preview() [24/24]

auto xtd::forms::toggle_buttons::print_preview ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent print_preview toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ properties() [1/24]

auto xtd::forms::toggle_buttons::properties ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button.

Returns
The created toggle_button.

◆ properties() [2/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ properties() [3/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ properties() [4/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ properties() [5/24]

auto xtd::forms::toggle_buttons::properties ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ properties() [6/24]

auto xtd::forms::toggle_buttons::properties ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ properties() [7/24]

auto xtd::forms::toggle_buttons::properties ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ properties() [8/24]

auto xtd::forms::toggle_buttons::properties ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ properties() [9/24]

auto xtd::forms::toggle_buttons::properties ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ properties() [10/24]

auto xtd::forms::toggle_buttons::properties ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ properties() [11/24]

auto xtd::forms::toggle_buttons::properties ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ properties() [12/24]

auto xtd::forms::toggle_buttons::properties ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ properties() [13/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ properties() [14/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ properties() [15/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ properties() [16/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ properties() [17/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ properties() [18/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ properties() [19/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ properties() [20/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ properties() [21/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ properties() [22/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ properties() [23/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ properties() [24/24]

auto xtd::forms::toggle_buttons::properties ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent properties toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ quit() [1/24]

auto xtd::forms::toggle_buttons::quit ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button.

Returns
The created toggle_button.

◆ quit() [2/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ quit() [3/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ quit() [4/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ quit() [5/24]

auto xtd::forms::toggle_buttons::quit ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ quit() [6/24]

auto xtd::forms::toggle_buttons::quit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ quit() [7/24]

auto xtd::forms::toggle_buttons::quit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ quit() [8/24]

auto xtd::forms::toggle_buttons::quit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ quit() [9/24]

auto xtd::forms::toggle_buttons::quit ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ quit() [10/24]

auto xtd::forms::toggle_buttons::quit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ quit() [11/24]

auto xtd::forms::toggle_buttons::quit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ quit() [12/24]

auto xtd::forms::toggle_buttons::quit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ quit() [13/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ quit() [14/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ quit() [15/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ quit() [16/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ quit() [17/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ quit() [18/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ quit() [19/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ quit() [20/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ quit() [21/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ quit() [22/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ quit() [23/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ quit() [24/24]

auto xtd::forms::toggle_buttons::quit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent quit toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ redo() [1/24]

auto xtd::forms::toggle_buttons::redo ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button.

Returns
The created toggle_button.

◆ redo() [2/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ redo() [3/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ redo() [4/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ redo() [5/24]

auto xtd::forms::toggle_buttons::redo ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ redo() [6/24]

auto xtd::forms::toggle_buttons::redo ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ redo() [7/24]

auto xtd::forms::toggle_buttons::redo ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ redo() [8/24]

auto xtd::forms::toggle_buttons::redo ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ redo() [9/24]

auto xtd::forms::toggle_buttons::redo ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ redo() [10/24]

auto xtd::forms::toggle_buttons::redo ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ redo() [11/24]

auto xtd::forms::toggle_buttons::redo ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ redo() [12/24]

auto xtd::forms::toggle_buttons::redo ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ redo() [13/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ redo() [14/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ redo() [15/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ redo() [16/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ redo() [17/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ redo() [18/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ redo() [19/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ redo() [20/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ redo() [21/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ redo() [22/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ redo() [23/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ redo() [24/24]

auto xtd::forms::toggle_buttons::redo ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent redo toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ refresh() [1/24]

auto xtd::forms::toggle_buttons::refresh ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button.

Returns
The created toggle_button.

◆ refresh() [2/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ refresh() [3/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ refresh() [4/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ refresh() [5/24]

auto xtd::forms::toggle_buttons::refresh ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ refresh() [6/24]

auto xtd::forms::toggle_buttons::refresh ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ refresh() [7/24]

auto xtd::forms::toggle_buttons::refresh ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ refresh() [8/24]

auto xtd::forms::toggle_buttons::refresh ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ refresh() [9/24]

auto xtd::forms::toggle_buttons::refresh ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ refresh() [10/24]

auto xtd::forms::toggle_buttons::refresh ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ refresh() [11/24]

auto xtd::forms::toggle_buttons::refresh ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ refresh() [12/24]

auto xtd::forms::toggle_buttons::refresh ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ refresh() [13/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ refresh() [14/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ refresh() [15/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ refresh() [16/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ refresh() [17/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ refresh() [18/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ refresh() [19/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ refresh() [20/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ refresh() [21/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ refresh() [22/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ refresh() [23/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ refresh() [24/24]

auto xtd::forms::toggle_buttons::refresh ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent refresh toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ remove() [1/24]

auto xtd::forms::toggle_buttons::remove ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button.

Returns
The created toggle_button.

◆ remove() [2/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ remove() [3/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ remove() [4/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ remove() [5/24]

auto xtd::forms::toggle_buttons::remove ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ remove() [6/24]

auto xtd::forms::toggle_buttons::remove ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ remove() [7/24]

auto xtd::forms::toggle_buttons::remove ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ remove() [8/24]

auto xtd::forms::toggle_buttons::remove ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ remove() [9/24]

auto xtd::forms::toggle_buttons::remove ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ remove() [10/24]

auto xtd::forms::toggle_buttons::remove ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ remove() [11/24]

auto xtd::forms::toggle_buttons::remove ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ remove() [12/24]

auto xtd::forms::toggle_buttons::remove ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ remove() [13/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ remove() [14/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ remove() [15/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ remove() [16/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ remove() [17/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ remove() [18/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ remove() [19/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ remove() [20/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ remove() [21/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ remove() [22/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ remove() [23/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ remove() [24/24]

auto xtd::forms::toggle_buttons::remove ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent remove toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ replace() [1/24]

auto xtd::forms::toggle_buttons::replace ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button.

Returns
The created toggle_button.

◆ replace() [2/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ replace() [3/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ replace() [4/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ replace() [5/24]

auto xtd::forms::toggle_buttons::replace ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ replace() [6/24]

auto xtd::forms::toggle_buttons::replace ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ replace() [7/24]

auto xtd::forms::toggle_buttons::replace ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ replace() [8/24]

auto xtd::forms::toggle_buttons::replace ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ replace() [9/24]

auto xtd::forms::toggle_buttons::replace ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ replace() [10/24]

auto xtd::forms::toggle_buttons::replace ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ replace() [11/24]

auto xtd::forms::toggle_buttons::replace ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ replace() [12/24]

auto xtd::forms::toggle_buttons::replace ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ replace() [13/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ replace() [14/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ replace() [15/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ replace() [16/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ replace() [17/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ replace() [18/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ replace() [19/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ replace() [20/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ replace() [21/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ replace() [22/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ replace() [23/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ replace() [24/24]

auto xtd::forms::toggle_buttons::replace ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent replace toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ retry() [1/24]

auto xtd::forms::toggle_buttons::retry ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button.

Returns
The created toggle_button.

◆ retry() [2/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ retry() [3/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ retry() [4/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ retry() [5/24]

auto xtd::forms::toggle_buttons::retry ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ retry() [6/24]

auto xtd::forms::toggle_buttons::retry ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ retry() [7/24]

auto xtd::forms::toggle_buttons::retry ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ retry() [8/24]

auto xtd::forms::toggle_buttons::retry ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ retry() [9/24]

auto xtd::forms::toggle_buttons::retry ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ retry() [10/24]

auto xtd::forms::toggle_buttons::retry ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ retry() [11/24]

auto xtd::forms::toggle_buttons::retry ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ retry() [12/24]

auto xtd::forms::toggle_buttons::retry ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ retry() [13/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ retry() [14/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ retry() [15/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ retry() [16/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ retry() [17/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ retry() [18/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ retry() [19/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ retry() [20/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ retry() [21/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ retry() [22/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ retry() [23/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ retry() [24/24]

auto xtd::forms::toggle_buttons::retry ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent retry toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ revert_to_saved() [1/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button.

Returns
The created toggle_button.

◆ revert_to_saved() [2/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [3/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [4/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ revert_to_saved() [5/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ revert_to_saved() [6/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [7/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [8/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ revert_to_saved() [9/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ revert_to_saved() [10/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [11/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [12/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ revert_to_saved() [13/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ revert_to_saved() [14/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [15/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [16/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ revert_to_saved() [17/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ revert_to_saved() [18/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [19/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [20/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ revert_to_saved() [21/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ revert_to_saved() [22/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [23/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ revert_to_saved() [24/24]

auto xtd::forms::toggle_buttons::revert_to_saved ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent revert_to_saved toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save() [1/24]

auto xtd::forms::toggle_buttons::save ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button.

Returns
The created toggle_button.

◆ save() [2/24]

auto xtd::forms::toggle_buttons::save ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save() [3/24]

auto xtd::forms::toggle_buttons::save ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save() [4/24]

auto xtd::forms::toggle_buttons::save ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save() [5/24]

auto xtd::forms::toggle_buttons::save ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ save() [6/24]

auto xtd::forms::toggle_buttons::save ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save() [7/24]

auto xtd::forms::toggle_buttons::save ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save() [8/24]

auto xtd::forms::toggle_buttons::save ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save() [9/24]

auto xtd::forms::toggle_buttons::save ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ save() [10/24]

auto xtd::forms::toggle_buttons::save ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save() [11/24]

auto xtd::forms::toggle_buttons::save ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save() [12/24]

auto xtd::forms::toggle_buttons::save ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save() [13/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ save() [14/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save() [15/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save() [16/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save() [17/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ save() [18/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save() [19/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save() [20/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save() [21/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ save() [22/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save() [23/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save() [24/24]

auto xtd::forms::toggle_buttons::save ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save_as() [1/24]

auto xtd::forms::toggle_buttons::save_as ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button.

Returns
The created toggle_button.

◆ save_as() [2/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save_as() [3/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save_as() [4/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save_as() [5/24]

auto xtd::forms::toggle_buttons::save_as ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ save_as() [6/24]

auto xtd::forms::toggle_buttons::save_as ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save_as() [7/24]

auto xtd::forms::toggle_buttons::save_as ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save_as() [8/24]

auto xtd::forms::toggle_buttons::save_as ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save_as() [9/24]

auto xtd::forms::toggle_buttons::save_as ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ save_as() [10/24]

auto xtd::forms::toggle_buttons::save_as ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save_as() [11/24]

auto xtd::forms::toggle_buttons::save_as ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save_as() [12/24]

auto xtd::forms::toggle_buttons::save_as ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save_as() [13/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ save_as() [14/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save_as() [15/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save_as() [16/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save_as() [17/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ save_as() [18/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save_as() [19/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save_as() [20/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ save_as() [21/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ save_as() [22/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ save_as() [23/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ save_as() [24/24]

auto xtd::forms::toggle_buttons::save_as ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent save_as toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ search() [1/24]

auto xtd::forms::toggle_buttons::search ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button.

Returns
The created toggle_button.

◆ search() [2/24]

auto xtd::forms::toggle_buttons::search ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ search() [3/24]

auto xtd::forms::toggle_buttons::search ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ search() [4/24]

auto xtd::forms::toggle_buttons::search ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ search() [5/24]

auto xtd::forms::toggle_buttons::search ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ search() [6/24]

auto xtd::forms::toggle_buttons::search ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ search() [7/24]

auto xtd::forms::toggle_buttons::search ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ search() [8/24]

auto xtd::forms::toggle_buttons::search ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ search() [9/24]

auto xtd::forms::toggle_buttons::search ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ search() [10/24]

auto xtd::forms::toggle_buttons::search ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ search() [11/24]

auto xtd::forms::toggle_buttons::search ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ search() [12/24]

auto xtd::forms::toggle_buttons::search ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ search() [13/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ search() [14/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ search() [15/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ search() [16/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ search() [17/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ search() [18/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ search() [19/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ search() [20/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ search() [21/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ search() [22/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ search() [23/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ search() [24/24]

auto xtd::forms::toggle_buttons::search ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent search toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ select_all() [1/24]

auto xtd::forms::toggle_buttons::select_all ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button.

Returns
The created toggle_button.

◆ select_all() [2/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ select_all() [3/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ select_all() [4/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ select_all() [5/24]

auto xtd::forms::toggle_buttons::select_all ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ select_all() [6/24]

auto xtd::forms::toggle_buttons::select_all ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ select_all() [7/24]

auto xtd::forms::toggle_buttons::select_all ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ select_all() [8/24]

auto xtd::forms::toggle_buttons::select_all ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ select_all() [9/24]

auto xtd::forms::toggle_buttons::select_all ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ select_all() [10/24]

auto xtd::forms::toggle_buttons::select_all ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ select_all() [11/24]

auto xtd::forms::toggle_buttons::select_all ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ select_all() [12/24]

auto xtd::forms::toggle_buttons::select_all ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ select_all() [13/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ select_all() [14/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ select_all() [15/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ select_all() [16/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ select_all() [17/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ select_all() [18/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ select_all() [19/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ select_all() [20/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ select_all() [21/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ select_all() [22/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ select_all() [23/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ select_all() [24/24]

auto xtd::forms::toggle_buttons::select_all ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent select_all toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ settings() [1/24]

auto xtd::forms::toggle_buttons::settings ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button.

Returns
The created toggle_button.

◆ settings() [2/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ settings() [3/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ settings() [4/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ settings() [5/24]

auto xtd::forms::toggle_buttons::settings ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ settings() [6/24]

auto xtd::forms::toggle_buttons::settings ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ settings() [7/24]

auto xtd::forms::toggle_buttons::settings ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ settings() [8/24]

auto xtd::forms::toggle_buttons::settings ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ settings() [9/24]

auto xtd::forms::toggle_buttons::settings ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ settings() [10/24]

auto xtd::forms::toggle_buttons::settings ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ settings() [11/24]

auto xtd::forms::toggle_buttons::settings ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ settings() [12/24]

auto xtd::forms::toggle_buttons::settings ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ settings() [13/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ settings() [14/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ settings() [15/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ settings() [16/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ settings() [17/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ settings() [18/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ settings() [19/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ settings() [20/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ settings() [21/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ settings() [22/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ settings() [23/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ settings() [24/24]

auto xtd::forms::toggle_buttons::settings ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent settings toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ spell_check() [1/24]

auto xtd::forms::toggle_buttons::spell_check ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button.

Returns
The created toggle_button.

◆ spell_check() [2/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ spell_check() [3/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ spell_check() [4/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ spell_check() [5/24]

auto xtd::forms::toggle_buttons::spell_check ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ spell_check() [6/24]

auto xtd::forms::toggle_buttons::spell_check ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ spell_check() [7/24]

auto xtd::forms::toggle_buttons::spell_check ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ spell_check() [8/24]

auto xtd::forms::toggle_buttons::spell_check ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ spell_check() [9/24]

auto xtd::forms::toggle_buttons::spell_check ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ spell_check() [10/24]

auto xtd::forms::toggle_buttons::spell_check ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ spell_check() [11/24]

auto xtd::forms::toggle_buttons::spell_check ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ spell_check() [12/24]

auto xtd::forms::toggle_buttons::spell_check ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ spell_check() [13/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ spell_check() [14/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ spell_check() [15/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ spell_check() [16/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ spell_check() [17/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ spell_check() [18/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ spell_check() [19/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ spell_check() [20/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ spell_check() [21/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ spell_check() [22/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ spell_check() [23/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ spell_check() [24/24]

auto xtd::forms::toggle_buttons::spell_check ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent spell_check toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ stop() [1/24]

auto xtd::forms::toggle_buttons::stop ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button.

Returns
The created toggle_button.

◆ stop() [2/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ stop() [3/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ stop() [4/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ stop() [5/24]

auto xtd::forms::toggle_buttons::stop ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ stop() [6/24]

auto xtd::forms::toggle_buttons::stop ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ stop() [7/24]

auto xtd::forms::toggle_buttons::stop ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ stop() [8/24]

auto xtd::forms::toggle_buttons::stop ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ stop() [9/24]

auto xtd::forms::toggle_buttons::stop ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ stop() [10/24]

auto xtd::forms::toggle_buttons::stop ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ stop() [11/24]

auto xtd::forms::toggle_buttons::stop ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ stop() [12/24]

auto xtd::forms::toggle_buttons::stop ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ stop() [13/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ stop() [14/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ stop() [15/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ stop() [16/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ stop() [17/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ stop() [18/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ stop() [19/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ stop() [20/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ stop() [21/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ stop() [22/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ stop() [23/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ stop() [24/24]

auto xtd::forms::toggle_buttons::stop ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent stop toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ strikeout() [1/24]

auto xtd::forms::toggle_buttons::strikeout ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button.

Returns
The created toggle_button.

◆ strikeout() [2/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ strikeout() [3/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ strikeout() [4/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ strikeout() [5/24]

auto xtd::forms::toggle_buttons::strikeout ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ strikeout() [6/24]

auto xtd::forms::toggle_buttons::strikeout ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ strikeout() [7/24]

auto xtd::forms::toggle_buttons::strikeout ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ strikeout() [8/24]

auto xtd::forms::toggle_buttons::strikeout ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ strikeout() [9/24]

auto xtd::forms::toggle_buttons::strikeout ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ strikeout() [10/24]

auto xtd::forms::toggle_buttons::strikeout ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ strikeout() [11/24]

auto xtd::forms::toggle_buttons::strikeout ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ strikeout() [12/24]

auto xtd::forms::toggle_buttons::strikeout ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ strikeout() [13/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ strikeout() [14/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ strikeout() [15/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ strikeout() [16/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ strikeout() [17/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ strikeout() [18/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ strikeout() [19/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ strikeout() [20/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ strikeout() [21/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ strikeout() [22/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ strikeout() [23/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ strikeout() [24/24]

auto xtd::forms::toggle_buttons::strikeout ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent strikeout toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ tools() [1/24]

auto xtd::forms::toggle_buttons::tools ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button.

Returns
The created toggle_button.

◆ tools() [2/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ tools() [3/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ tools() [4/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ tools() [5/24]

auto xtd::forms::toggle_buttons::tools ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ tools() [6/24]

auto xtd::forms::toggle_buttons::tools ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ tools() [7/24]

auto xtd::forms::toggle_buttons::tools ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ tools() [8/24]

auto xtd::forms::toggle_buttons::tools ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ tools() [9/24]

auto xtd::forms::toggle_buttons::tools ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ tools() [10/24]

auto xtd::forms::toggle_buttons::tools ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ tools() [11/24]

auto xtd::forms::toggle_buttons::tools ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ tools() [12/24]

auto xtd::forms::toggle_buttons::tools ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ tools() [13/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ tools() [14/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ tools() [15/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ tools() [16/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ tools() [17/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ tools() [18/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ tools() [19/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ tools() [20/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ tools() [21/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ tools() [22/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ tools() [23/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ tools() [24/24]

auto xtd::forms::toggle_buttons::tools ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent tools toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ top() [1/24]

auto xtd::forms::toggle_buttons::top ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button.

Returns
The created toggle_button.

◆ top() [2/24]

auto xtd::forms::toggle_buttons::top ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ top() [3/24]

auto xtd::forms::toggle_buttons::top ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ top() [4/24]

auto xtd::forms::toggle_buttons::top ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ top() [5/24]

auto xtd::forms::toggle_buttons::top ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ top() [6/24]

auto xtd::forms::toggle_buttons::top ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ top() [7/24]

auto xtd::forms::toggle_buttons::top ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ top() [8/24]

auto xtd::forms::toggle_buttons::top ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ top() [9/24]

auto xtd::forms::toggle_buttons::top ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ top() [10/24]

auto xtd::forms::toggle_buttons::top ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ top() [11/24]

auto xtd::forms::toggle_buttons::top ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ top() [12/24]

auto xtd::forms::toggle_buttons::top ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ top() [13/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ top() [14/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ top() [15/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ top() [16/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ top() [17/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ top() [18/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ top() [19/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ top() [20/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ top() [21/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ top() [22/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ top() [23/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ top() [24/24]

auto xtd::forms::toggle_buttons::top ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent top toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undelete() [1/24]

auto xtd::forms::toggle_buttons::undelete ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button.

Returns
The created toggle_button.

◆ undelete() [2/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undelete() [3/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undelete() [4/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undelete() [5/24]

auto xtd::forms::toggle_buttons::undelete ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ undelete() [6/24]

auto xtd::forms::toggle_buttons::undelete ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undelete() [7/24]

auto xtd::forms::toggle_buttons::undelete ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undelete() [8/24]

auto xtd::forms::toggle_buttons::undelete ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undelete() [9/24]

auto xtd::forms::toggle_buttons::undelete ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ undelete() [10/24]

auto xtd::forms::toggle_buttons::undelete ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undelete() [11/24]

auto xtd::forms::toggle_buttons::undelete ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undelete() [12/24]

auto xtd::forms::toggle_buttons::undelete ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undelete() [13/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ undelete() [14/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undelete() [15/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undelete() [16/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undelete() [17/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ undelete() [18/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undelete() [19/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undelete() [20/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undelete() [21/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ undelete() [22/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undelete() [23/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undelete() [24/24]

auto xtd::forms::toggle_buttons::undelete ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undelete toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ underline() [1/24]

auto xtd::forms::toggle_buttons::underline ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button.

Returns
The created toggle_button.

◆ underline() [2/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ underline() [3/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ underline() [4/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ underline() [5/24]

auto xtd::forms::toggle_buttons::underline ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ underline() [6/24]

auto xtd::forms::toggle_buttons::underline ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ underline() [7/24]

auto xtd::forms::toggle_buttons::underline ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ underline() [8/24]

auto xtd::forms::toggle_buttons::underline ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ underline() [9/24]

auto xtd::forms::toggle_buttons::underline ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ underline() [10/24]

auto xtd::forms::toggle_buttons::underline ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ underline() [11/24]

auto xtd::forms::toggle_buttons::underline ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ underline() [12/24]

auto xtd::forms::toggle_buttons::underline ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ underline() [13/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ underline() [14/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ underline() [15/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ underline() [16/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ underline() [17/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ underline() [18/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ underline() [19/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ underline() [20/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ underline() [21/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ underline() [22/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ underline() [23/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ underline() [24/24]

auto xtd::forms::toggle_buttons::underline ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent underline toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undo() [1/24]

auto xtd::forms::toggle_buttons::undo ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button.

Returns
The created toggle_button.

◆ undo() [2/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undo() [3/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undo() [4/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undo() [5/24]

auto xtd::forms::toggle_buttons::undo ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ undo() [6/24]

auto xtd::forms::toggle_buttons::undo ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undo() [7/24]

auto xtd::forms::toggle_buttons::undo ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undo() [8/24]

auto xtd::forms::toggle_buttons::undo ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undo() [9/24]

auto xtd::forms::toggle_buttons::undo ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ undo() [10/24]

auto xtd::forms::toggle_buttons::undo ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undo() [11/24]

auto xtd::forms::toggle_buttons::undo ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undo() [12/24]

auto xtd::forms::toggle_buttons::undo ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undo() [13/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ undo() [14/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undo() [15/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undo() [16/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undo() [17/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ undo() [18/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undo() [19/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undo() [20/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ undo() [21/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ undo() [22/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ undo() [23/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ undo() [24/24]

auto xtd::forms::toggle_buttons::undo ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent undo toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ unindent() [1/24]

auto xtd::forms::toggle_buttons::unindent ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button.

Returns
The created toggle_button.

◆ unindent() [2/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ unindent() [3/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ unindent() [4/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ unindent() [5/24]

auto xtd::forms::toggle_buttons::unindent ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ unindent() [6/24]

auto xtd::forms::toggle_buttons::unindent ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ unindent() [7/24]

auto xtd::forms::toggle_buttons::unindent ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ unindent() [8/24]

auto xtd::forms::toggle_buttons::unindent ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ unindent() [9/24]

auto xtd::forms::toggle_buttons::unindent ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ unindent() [10/24]

auto xtd::forms::toggle_buttons::unindent ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ unindent() [11/24]

auto xtd::forms::toggle_buttons::unindent ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ unindent() [12/24]

auto xtd::forms::toggle_buttons::unindent ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ unindent() [13/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ unindent() [14/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ unindent() [15/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ unindent() [16/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ unindent() [17/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ unindent() [18/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ unindent() [19/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ unindent() [20/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ unindent() [21/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ unindent() [22/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ unindent() [23/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ unindent() [24/24]

auto xtd::forms::toggle_buttons::unindent ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent unindent toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ up() [1/24]

auto xtd::forms::toggle_buttons::up ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button.

Returns
The created toggle_button.

◆ up() [2/24]

auto xtd::forms::toggle_buttons::up ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ up() [3/24]

auto xtd::forms::toggle_buttons::up ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ up() [4/24]

auto xtd::forms::toggle_buttons::up ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ up() [5/24]

auto xtd::forms::toggle_buttons::up ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ up() [6/24]

auto xtd::forms::toggle_buttons::up ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ up() [7/24]

auto xtd::forms::toggle_buttons::up ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ up() [8/24]

auto xtd::forms::toggle_buttons::up ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ up() [9/24]

auto xtd::forms::toggle_buttons::up ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ up() [10/24]

auto xtd::forms::toggle_buttons::up ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ up() [11/24]

auto xtd::forms::toggle_buttons::up ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ up() [12/24]

auto xtd::forms::toggle_buttons::up ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ up() [13/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ up() [14/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ up() [15/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ up() [16/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ up() [17/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ up() [18/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ up() [19/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ up() [20/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ up() [21/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ up() [22/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ up() [23/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ up() [24/24]

auto xtd::forms::toggle_buttons::up ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent up toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ view() [1/24]

auto xtd::forms::toggle_buttons::view ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button.

Returns
The created toggle_button.

◆ view() [2/24]

auto xtd::forms::toggle_buttons::view ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ view() [3/24]

auto xtd::forms::toggle_buttons::view ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ view() [4/24]

auto xtd::forms::toggle_buttons::view ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ view() [5/24]

auto xtd::forms::toggle_buttons::view ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ view() [6/24]

auto xtd::forms::toggle_buttons::view ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ view() [7/24]

auto xtd::forms::toggle_buttons::view ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ view() [8/24]

auto xtd::forms::toggle_buttons::view ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ view() [9/24]

auto xtd::forms::toggle_buttons::view ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ view() [10/24]

auto xtd::forms::toggle_buttons::view ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ view() [11/24]

auto xtd::forms::toggle_buttons::view ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ view() [12/24]

auto xtd::forms::toggle_buttons::view ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ view() [13/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ view() [14/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ view() [15/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ view() [16/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ view() [17/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ view() [18/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ view() [19/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ view() [20/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ view() [21/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ view() [22/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ view() [23/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ view() [24/24]

auto xtd::forms::toggle_buttons::view ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent view toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ window() [1/24]

auto xtd::forms::toggle_buttons::window ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button.

Returns
The created toggle_button.

◆ window() [2/24]

auto xtd::forms::toggle_buttons::window ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ window() [3/24]

auto xtd::forms::toggle_buttons::window ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ window() [4/24]

auto xtd::forms::toggle_buttons::window ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ window() [5/24]

auto xtd::forms::toggle_buttons::window ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ window() [6/24]

auto xtd::forms::toggle_buttons::window ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ window() [7/24]

auto xtd::forms::toggle_buttons::window ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ window() [8/24]

auto xtd::forms::toggle_buttons::window ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ window() [9/24]

auto xtd::forms::toggle_buttons::window ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ window() [10/24]

auto xtd::forms::toggle_buttons::window ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ window() [11/24]

auto xtd::forms::toggle_buttons::window ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ window() [12/24]

auto xtd::forms::toggle_buttons::window ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ window() [13/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ window() [14/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ window() [15/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ window() [16/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ window() [17/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ window() [18/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ window() [19/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ window() [20/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ window() [21/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ window() [22/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ window() [23/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ window() [24/24]

auto xtd::forms::toggle_buttons::window ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent window toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ yes() [1/24]

auto xtd::forms::toggle_buttons::yes ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button.

Returns
The created toggle_button.

◆ yes() [2/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ yes() [3/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ yes() [4/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ yes() [5/24]

auto xtd::forms::toggle_buttons::yes ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ yes() [6/24]

auto xtd::forms::toggle_buttons::yes ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ yes() [7/24]

auto xtd::forms::toggle_buttons::yes ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ yes() [8/24]

auto xtd::forms::toggle_buttons::yes ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ yes() [9/24]

auto xtd::forms::toggle_buttons::yes ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ yes() [10/24]

auto xtd::forms::toggle_buttons::yes ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ yes() [11/24]

auto xtd::forms::toggle_buttons::yes ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ yes() [12/24]

auto xtd::forms::toggle_buttons::yes ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ yes() [13/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ yes() [14/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ yes() [15/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ yes() [16/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ yes() [17/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ yes() [18/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ yes() [19/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ yes() [20/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ yes() [21/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ yes() [22/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ yes() [23/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ yes() [24/24]

auto xtd::forms::toggle_buttons::yes ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent yes toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_in() [1/24]

auto xtd::forms::toggle_buttons::zoom_in ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button.

Returns
The created toggle_button.

◆ zoom_in() [2/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_in() [3/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_in() [4/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_in() [5/24]

auto xtd::forms::toggle_buttons::zoom_in ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_in() [6/24]

auto xtd::forms::toggle_buttons::zoom_in ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_in() [7/24]

auto xtd::forms::toggle_buttons::zoom_in ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_in() [8/24]

auto xtd::forms::toggle_buttons::zoom_in ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_in() [9/24]

auto xtd::forms::toggle_buttons::zoom_in ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_in() [10/24]

auto xtd::forms::toggle_buttons::zoom_in ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_in() [11/24]

auto xtd::forms::toggle_buttons::zoom_in ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_in() [12/24]

auto xtd::forms::toggle_buttons::zoom_in ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_in() [13/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ zoom_in() [14/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_in() [15/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_in() [16/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_in() [17/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_in() [18/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_in() [19/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_in() [20/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_in() [21/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_in() [22/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_in() [23/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_in() [24/24]

auto xtd::forms::toggle_buttons::zoom_in ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_in toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_out() [1/24]

auto xtd::forms::toggle_buttons::zoom_out ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button.

Returns
The created toggle_button.

◆ zoom_out() [2/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_out() [3/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_out() [4/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_out() [5/24]

auto xtd::forms::toggle_buttons::zoom_out ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_out() [6/24]

auto xtd::forms::toggle_buttons::zoom_out ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_out() [7/24]

auto xtd::forms::toggle_buttons::zoom_out ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_out() [8/24]

auto xtd::forms::toggle_buttons::zoom_out ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_out() [9/24]

auto xtd::forms::toggle_buttons::zoom_out ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_out() [10/24]

auto xtd::forms::toggle_buttons::zoom_out ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_out() [11/24]

auto xtd::forms::toggle_buttons::zoom_out ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_out() [12/24]

auto xtd::forms::toggle_buttons::zoom_out ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_out() [13/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ zoom_out() [14/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_out() [15/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_out() [16/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_out() [17/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_out() [18/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_out() [19/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_out() [20/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_out() [21/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_out() [22/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_out() [23/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_out() [24/24]

auto xtd::forms::toggle_buttons::zoom_out ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_out toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_to_fit() [1/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button.

Returns
The created toggle_button.

◆ zoom_to_fit() [2/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::drawing::point & location) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified location.

Parameters
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [3/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified location, and size.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [4/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified location, size, and name.

Parameters
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_to_fit() [5/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( xtd::forms::check_state check_state) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified and check_state.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_to_fit() [6/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified check_state, and location.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [7/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified check_state, location, and size.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [8/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified check_state, location, size, and name.

Parameters
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_to_fit() [9/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified three_state, and check_state.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_to_fit() [10/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified three_state, check_state, and location.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [11/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified three_state, check_state, location, and size.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [12/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified three_state, check_state, location, size, and name.

Parameters
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_to_fit() [13/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent.

Parameters
parentThe control that contains the toggle_button.
Returns
The created toggle_button.

◆ zoom_to_fit() [14/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, and location.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [15/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, location, and size.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [16/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_to_fit() [17/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, and check_state.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_to_fit() [18/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [19/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [20/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

◆ zoom_to_fit() [21/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, three_state, and check_state.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
Returns
The created toggle_button.

◆ zoom_to_fit() [22/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, three_state, check_state, and location.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [23/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, three_state, check_state, location, and size.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
Returns
The created toggle_button.

◆ zoom_to_fit() [24/24]

auto xtd::forms::toggle_buttons::zoom_to_fit ( const xtd::forms::control & parent,
bool three_state,
xtd::forms::check_state check_state,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::toggle_button
staticnodiscard

Create a system-defined toggle_button that represent zoom_to_fit toggle_button with specified parent, three_state, check_state, location, size, and name.

Parameters
parentThe control that contains the toggle_button.
three_statetrue if the toggle_button is able to display three check states; otherwise, false.
check_stateOne of the xtd::forms::check_state enumeration values.
locationThe toggle_button location in pixels.
sizeThe toggle_button size in pixels.
nameThe name of the toggle_button.
Returns
The created toggle_button.

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