xtd 1.0.0
Loading...
Searching...
No Matches
xtd::forms::loading_indicators Class Reference
Inheritance diagram for xtd::forms::loading_indicators:
xtd::static_object

Definition

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

Header
#include <xtd/forms/loading_indicators>
Namespace
xtd::forms
Library
xtd.forms
Examples
The following code example demonstrates the use of loading_indicators control factory.
#include <xtd/xtd>
namespace loading_indicators_example {
class form1 : public form {
public:
form1() {
fore_color(application::style_sheet().system_colors().accent()).text("Loading indicators example");
}
private:
void on_mouse_click(const mouse_event_args& e) override {
for (auto item : {&loading_indicator1, &loading_indicator2, &loading_indicator3, &loading_indicator4, &loading_indicator5, &loading_indicator6, &loading_indicator7, &loading_indicator8, &loading_indicator9, &loading_indicator10, &loading_indicator11, &loading_indicator12, &loading_indicator13, &loading_indicator14}) {
if (e.button() == xtd::forms::mouse_buttons::left) item->running(!item->running());
if (e.button() == xtd::forms::mouse_buttons::right) item->enabled(!item->enabled());
}
}
loading_indicator loading_indicator1 = loading_indicators::system(*this, true, {10, 10});
loading_indicator loading_indicator2 = loading_indicators::bar(*this, true, {50, 10});
loading_indicator loading_indicator3 = loading_indicators::circle_bars(*this, true, {90, 10});
loading_indicator loading_indicator4 = loading_indicators::circle_blinks(*this, true, {130, 10});
loading_indicator loading_indicator5 = loading_indicators::five_lines(*this, true, {170, 10});
loading_indicator loading_indicator6 = loading_indicators::five_lines_center(*this, true, {210, 10});
loading_indicator loading_indicator7 = loading_indicators::five_lines_chronological(*this, true, {250, 10});
loading_indicator loading_indicator8 = loading_indicators::five_lines_pulse(*this, true, {10, 50});
loading_indicator loading_indicator9 = loading_indicators::five_lines_wave(*this, true, {50, 50});
loading_indicator loading_indicator10 = loading_indicators::pulse(*this, true, {90, 50});
loading_indicator loading_indicator11 = loading_indicators::pulse_outline(*this, true, {130, 50});
loading_indicator loading_indicator12 = loading_indicators::three_balls(*this, true, {170, 50});
loading_indicator loading_indicator13 = loading_indicators::three_balls_bouncing(*this, true, {210, 50});
loading_indicator loading_indicator14 = loading_indicators::three_balls_rotation(*this, true, {250, 50});
};
}
auto main() -> int {
application::run(loading_indicators_example::form1 {});
}
static auto style_sheet() noexcept -> const xtd::forms::style_sheets::style_sheet &
Gets current xtd::forms::style_sheets::style_sheet style sheet.
virtual auto text() const noexcept -> const xtd::string &
Gets the text associated with this control.
Represents a window or dialog box that makes up an application's user interface.
Definition form.hpp:54
Provides data for the xtd::forms::control::mouse_up, xtd::forms::control::mouse_down,...
Definition mouse_event_args.hpp:34
@ e
The E key.
Definition console_key.hpp:96
@ right
The right mouse button was pressed.
Definition mouse_buttons.hpp:28
@ left
The left mouse button was pressed.
Definition mouse_buttons.hpp:26

Public Static Properties

static auto bar () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator.
static auto bar (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location.
static auto bar (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location, and size.
static auto bar (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location, size, and name.
static auto bar (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified and running state.
static auto bar (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, and location.
static auto bar (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, location, and size.
static auto bar (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, location, size, and name.
static auto bar (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent.
static auto bar (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, and location.
static auto bar (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, location, and size.
static auto bar (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, location, size, and name.
static auto bar (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, and running state.
static auto bar (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, and location.
static auto bar (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, location, and size.
static auto bar (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, location, size, and name.
static auto circle_bars () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator.
static auto circle_bars (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location.
static auto circle_bars (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location, and size.
static auto circle_bars (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location, size, and name.
static auto circle_bars (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified and running state.
static auto circle_bars (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, and location.
static auto circle_bars (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, location, and size.
static auto circle_bars (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, location, size, and name.
static auto circle_bars (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent.
static auto circle_bars (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, and location.
static auto circle_bars (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, location, and size.
static auto circle_bars (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, location, size, and name.
static auto circle_bars (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, and running state.
static auto circle_bars (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, and location.
static auto circle_bars (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, location, and size.
static auto circle_bars (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, location, size, and name.
static auto circle_blinks () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator.
static auto circle_blinks (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location.
static auto circle_blinks (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location, and size.
static auto circle_blinks (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location, size, and name.
static auto circle_blinks (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified and running state.
static auto circle_blinks (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, and location.
static auto circle_blinks (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, location, and size.
static auto circle_blinks (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, location, size, and name.
static auto circle_blinks (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent.
static auto circle_blinks (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, and location.
static auto circle_blinks (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, location, and size.
static auto circle_blinks (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, location, size, and name.
static auto circle_blinks (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, and running state.
static auto circle_blinks (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, and location.
static auto circle_blinks (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, location, and size.
static auto circle_blinks (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, location, size, and name.
static auto five_lines_center () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator.
static auto five_lines_center (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location.
static auto five_lines_center (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location, and size.
static auto five_lines_center (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location, size, and name.
static auto five_lines_center (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified and running state.
static auto five_lines_center (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, and location.
static auto five_lines_center (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, location, and size.
static auto five_lines_center (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, location, size, and name.
static auto five_lines_center (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent.
static auto five_lines_center (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, and location.
static auto five_lines_center (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, location, and size.
static auto five_lines_center (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, location, size, and name.
static auto five_lines_center (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, and running state.
static auto five_lines_center (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, and location.
static auto five_lines_center (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, location, and size.
static auto five_lines_center (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, location, size, and name.
static auto five_lines_chronological () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator.
static auto five_lines_chronological (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location.
static auto five_lines_chronological (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location, and size.
static auto five_lines_chronological (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location, size, and name.
static auto five_lines_chronological (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified and running state.
static auto five_lines_chronological (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, and location.
static auto five_lines_chronological (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, location, and size.
static auto five_lines_chronological (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, location, size, and name.
static auto five_lines_chronological (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent.
static auto five_lines_chronological (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, and location.
static auto five_lines_chronological (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, location, and size.
static auto five_lines_chronological (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, location, size, and name.
static auto five_lines_chronological (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, and running state.
static auto five_lines_chronological (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, and location.
static auto five_lines_chronological (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, location, and size.
static auto five_lines_chronological (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, location, size, and name.
static auto five_lines_pulse () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator.
static auto five_lines_pulse (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location.
static auto five_lines_pulse (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location, and size.
static auto five_lines_pulse (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location, size, and name.
static auto five_lines_pulse (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified and running state.
static auto five_lines_pulse (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, and location.
static auto five_lines_pulse (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, location, and size.
static auto five_lines_pulse (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, location, size, and name.
static auto five_lines_pulse (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent.
static auto five_lines_pulse (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, and location.
static auto five_lines_pulse (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, location, and size.
static auto five_lines_pulse (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, location, size, and name.
static auto five_lines_pulse (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, and running state.
static auto five_lines_pulse (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, and location.
static auto five_lines_pulse (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, location, and size.
static auto five_lines_pulse (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, location, size, and name.
static auto five_lines_wave () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator.
static auto five_lines_wave (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location.
static auto five_lines_wave (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location, and size.
static auto five_lines_wave (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location, size, and name.
static auto five_lines_wave (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified and running state.
static auto five_lines_wave (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, and location.
static auto five_lines_wave (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, location, and size.
static auto five_lines_wave (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, location, size, and name.
static auto five_lines_wave (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent.
static auto five_lines_wave (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, and location.
static auto five_lines_wave (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, location, and size.
static auto five_lines_wave (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, location, size, and name.
static auto five_lines_wave (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, and running state.
static auto five_lines_wave (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, and location.
static auto five_lines_wave (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, location, and size.
static auto five_lines_wave (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, location, size, and name.
static auto five_lines () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator.
static auto five_lines (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location.
static auto five_lines (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location, and size.
static auto five_lines (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location, size, and name.
static auto five_lines (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified and running state.
static auto five_lines (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, and location.
static auto five_lines (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, location, and size.
static auto five_lines (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, location, size, and name.
static auto five_lines (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent.
static auto five_lines (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, and location.
static auto five_lines (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, location, and size.
static auto five_lines (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, location, size, and name.
static auto five_lines (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, and running state.
static auto five_lines (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, and location.
static auto five_lines (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, location, and size.
static auto five_lines (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, location, size, and name.
static auto pulse () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator.
static auto pulse (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location.
static auto pulse (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location, and size.
static auto pulse (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location, size, and name.
static auto pulse (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified and running state.
static auto pulse (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, and location.
static auto pulse (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, location, and size.
static auto pulse (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, location, size, and name.
static auto pulse (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent.
static auto pulse (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, and location.
static auto pulse (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, location, and size.
static auto pulse (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, location, size, and name.
static auto pulse (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, and running state.
static auto pulse (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, and location.
static auto pulse (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, location, and size.
static auto pulse (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, location, size, and name.
static auto pulse_outline () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator.
static auto pulse_outline (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location.
static auto pulse_outline (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location, and size.
static auto pulse_outline (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location, size, and name.
static auto pulse_outline (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified and running state.
static auto pulse_outline (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, and location.
static auto pulse_outline (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, location, and size.
static auto pulse_outline (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, location, size, and name.
static auto pulse_outline (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent.
static auto pulse_outline (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, and location.
static auto pulse_outline (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, location, and size.
static auto pulse_outline (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, location, size, and name.
static auto pulse_outline (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, and running state.
static auto pulse_outline (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, and location.
static auto pulse_outline (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, location, and size.
static auto pulse_outline (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, location, size, and name.
static auto standard () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator.
static auto standard (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location.
static auto standard (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location, and size.
static auto standard (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location, size, and name.
static auto standard (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified and running state.
static auto standard (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, and location.
static auto standard (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, location, and size.
static auto standard (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, location, size, and name.
static auto standard (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent.
static auto standard (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, and location.
static auto standard (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, location, and size.
static auto standard (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, location, size, and name.
static auto standard (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, and running state.
static auto standard (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, and location.
static auto standard (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, location, and size.
static auto standard (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, location, size, and name.
static auto system () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator.
static auto system (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location.
static auto system (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location, and size.
static auto system (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location, size, and name.
static auto system (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified and running state.
static auto system (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, and location.
static auto system (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, location, and size.
static auto system (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, location, size, and name.
static auto system (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent.
static auto system (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, and location.
static auto system (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, location, and size.
static auto system (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, location, size, and name.
static auto system (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, and running state.
static auto system (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, and location.
static auto system (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, location, and size.
static auto system (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, location, size, and name.
static auto three_balls () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator.
static auto three_balls (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location.
static auto three_balls (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location, and size.
static auto three_balls (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location, size, and name.
static auto three_balls (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified and running state.
static auto three_balls (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, and location.
static auto three_balls (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, location, and size.
static auto three_balls (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, location, size, and name.
static auto three_balls (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent.
static auto three_balls (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, and location.
static auto three_balls (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, location, and size.
static auto three_balls (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, location, size, and name.
static auto three_balls (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, and running state.
static auto three_balls (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, and location.
static auto three_balls (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, location, and size.
static auto three_balls (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, location, size, and name.
static auto three_balls_bouncing () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator.
static auto three_balls_bouncing (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location.
static auto three_balls_bouncing (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location, and size.
static auto three_balls_bouncing (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location, size, and name.
static auto three_balls_bouncing (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified and running state.
static auto three_balls_bouncing (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, and location.
static auto three_balls_bouncing (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, location, and size.
static auto three_balls_bouncing (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, location, size, and name.
static auto three_balls_bouncing (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent.
static auto three_balls_bouncing (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, and location.
static auto three_balls_bouncing (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, location, and size.
static auto three_balls_bouncing (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, location, size, and name.
static auto three_balls_bouncing (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, and running state.
static auto three_balls_bouncing (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, and location.
static auto three_balls_bouncing (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, location, and size.
static auto three_balls_bouncing (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, location, size, and name.
static auto three_balls_rotation () noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator.
static auto three_balls_rotation (const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location.
static auto three_balls_rotation (const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location, and size.
static auto three_balls_rotation (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location, size, and name.
static auto three_balls_rotation (bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified and running state.
static auto three_balls_rotation (bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, and location.
static auto three_balls_rotation (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, location, and size.
static auto three_balls_rotation (bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, location, size, and name.
static auto three_balls_rotation (const xtd::forms::control &parent) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent.
static auto three_balls_rotation (const xtd::forms::control &parent, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, and location.
static auto three_balls_rotation (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, location, and size.
static auto three_balls_rotation (const xtd::forms::control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, location, size, and name.
static auto three_balls_rotation (const xtd::forms::control &parent, bool running) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, and running state.
static auto three_balls_rotation (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, and location.
static auto three_balls_rotation (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, location, and size.
static auto three_balls_rotation (const xtd::forms::control &parent, bool running, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) noexcept -> xtd::forms::loading_indicator
 Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, location, size, and name.

Member Function Documentation

◆ bar() [1/16]

auto xtd::forms::loading_indicators::bar ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator.

Returns
The created loading indicator.

◆ bar() [2/16]

auto xtd::forms::loading_indicators::bar ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ bar() [3/16]

auto xtd::forms::loading_indicators::bar ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ bar() [4/16]

auto xtd::forms::loading_indicators::bar ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified location, size, and name.

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

◆ bar() [5/16]

auto xtd::forms::loading_indicators::bar ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ bar() [6/16]

auto xtd::forms::loading_indicators::bar ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ bar() [7/16]

auto xtd::forms::loading_indicators::bar ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ bar() [8/16]

auto xtd::forms::loading_indicators::bar ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ bar() [9/16]

auto xtd::forms::loading_indicators::bar ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ bar() [10/16]

auto xtd::forms::loading_indicators::bar ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, and location.

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

◆ bar() [11/16]

auto xtd::forms::loading_indicators::bar ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, location, and size.

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

◆ bar() [12/16]

auto xtd::forms::loading_indicators::bar ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, location, size, and name.

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

◆ bar() [13/16]

auto xtd::forms::loading_indicators::bar ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ bar() [14/16]

auto xtd::forms::loading_indicators::bar ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ bar() [15/16]

auto xtd::forms::loading_indicators::bar ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ bar() [16/16]

auto xtd::forms::loading_indicators::bar ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent bar loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_bars() [1/16]

auto xtd::forms::loading_indicators::circle_bars ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator.

Returns
The created loading indicator.

◆ circle_bars() [2/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_bars() [3/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_bars() [4/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified location, size, and name.

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

◆ circle_bars() [5/16]

auto xtd::forms::loading_indicators::circle_bars ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ circle_bars() [6/16]

auto xtd::forms::loading_indicators::circle_bars ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_bars() [7/16]

auto xtd::forms::loading_indicators::circle_bars ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_bars() [8/16]

auto xtd::forms::loading_indicators::circle_bars ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_bars() [9/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ circle_bars() [10/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, and location.

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

◆ circle_bars() [11/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, location, and size.

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

◆ circle_bars() [12/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, location, size, and name.

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

◆ circle_bars() [13/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ circle_bars() [14/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_bars() [15/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_bars() [16/16]

auto xtd::forms::loading_indicators::circle_bars ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_bars loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_blinks() [1/16]

auto xtd::forms::loading_indicators::circle_blinks ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator.

Returns
The created loading indicator.

◆ circle_blinks() [2/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [3/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [4/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified location, size, and name.

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

◆ circle_blinks() [5/16]

auto xtd::forms::loading_indicators::circle_blinks ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ circle_blinks() [6/16]

auto xtd::forms::loading_indicators::circle_blinks ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [7/16]

auto xtd::forms::loading_indicators::circle_blinks ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [8/16]

auto xtd::forms::loading_indicators::circle_blinks ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ circle_blinks() [9/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ circle_blinks() [10/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, and location.

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

◆ circle_blinks() [11/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, location, and size.

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

◆ circle_blinks() [12/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, location, size, and name.

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

◆ circle_blinks() [13/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ circle_blinks() [14/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [15/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ circle_blinks() [16/16]

auto xtd::forms::loading_indicators::circle_blinks ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent circle_blinks loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_center() [1/16]

auto xtd::forms::loading_indicators::five_lines_center ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator.

Returns
The created loading indicator.

◆ five_lines_center() [2/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [3/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [4/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified location, size, and name.

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

◆ five_lines_center() [5/16]

auto xtd::forms::loading_indicators::five_lines_center ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_center() [6/16]

auto xtd::forms::loading_indicators::five_lines_center ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [7/16]

auto xtd::forms::loading_indicators::five_lines_center ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [8/16]

auto xtd::forms::loading_indicators::five_lines_center ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_center() [9/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines_center() [10/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, and location.

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

◆ five_lines_center() [11/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, location, and size.

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

◆ five_lines_center() [12/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, location, size, and name.

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

◆ five_lines_center() [13/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_center() [14/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [15/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_center() [16/16]

auto xtd::forms::loading_indicators::five_lines_center ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_center loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_chronological() [1/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator.

Returns
The created loading indicator.

◆ five_lines_chronological() [2/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [3/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [4/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified location, size, and name.

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

◆ five_lines_chronological() [5/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_chronological() [6/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [7/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [8/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_chronological() [9/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines_chronological() [10/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, and location.

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

◆ five_lines_chronological() [11/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, location, and size.

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

◆ five_lines_chronological() [12/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, location, size, and name.

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

◆ five_lines_chronological() [13/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_chronological() [14/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [15/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_chronological() [16/16]

auto xtd::forms::loading_indicators::five_lines_chronological ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_chronological loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_pulse() [1/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator.

Returns
The created loading indicator.

◆ five_lines_pulse() [2/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [3/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [4/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified location, size, and name.

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

◆ five_lines_pulse() [5/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_pulse() [6/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [7/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [8/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_pulse() [9/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines_pulse() [10/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, and location.

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

◆ five_lines_pulse() [11/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, location, and size.

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

◆ five_lines_pulse() [12/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, location, size, and name.

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

◆ five_lines_pulse() [13/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_pulse() [14/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [15/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_pulse() [16/16]

auto xtd::forms::loading_indicators::five_lines_pulse ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_pulse loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_wave() [1/16]

auto xtd::forms::loading_indicators::five_lines_wave ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator.

Returns
The created loading indicator.

◆ five_lines_wave() [2/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [3/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [4/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified location, size, and name.

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

◆ five_lines_wave() [5/16]

auto xtd::forms::loading_indicators::five_lines_wave ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_wave() [6/16]

auto xtd::forms::loading_indicators::five_lines_wave ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [7/16]

auto xtd::forms::loading_indicators::five_lines_wave ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [8/16]

auto xtd::forms::loading_indicators::five_lines_wave ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines_wave() [9/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines_wave() [10/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, and location.

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

◆ five_lines_wave() [11/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, location, and size.

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

◆ five_lines_wave() [12/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, location, size, and name.

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

◆ five_lines_wave() [13/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines_wave() [14/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [15/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines_wave() [16/16]

auto xtd::forms::loading_indicators::five_lines_wave ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines_wave loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines() [1/16]

auto xtd::forms::loading_indicators::five_lines ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator.

Returns
The created loading indicator.

◆ five_lines() [2/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines() [3/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines() [4/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified location, size, and name.

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

◆ five_lines() [5/16]

auto xtd::forms::loading_indicators::five_lines ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines() [6/16]

auto xtd::forms::loading_indicators::five_lines ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines() [7/16]

auto xtd::forms::loading_indicators::five_lines ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines() [8/16]

auto xtd::forms::loading_indicators::five_lines ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ five_lines() [9/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ five_lines() [10/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, and location.

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

◆ five_lines() [11/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, location, and size.

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

◆ five_lines() [12/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, location, size, and name.

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

◆ five_lines() [13/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ five_lines() [14/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ five_lines() [15/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ five_lines() [16/16]

auto xtd::forms::loading_indicators::five_lines ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent five_lines loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse() [1/16]

auto xtd::forms::loading_indicators::pulse ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator.

Returns
The created loading indicator.

◆ pulse() [2/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse() [3/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse() [4/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified location, size, and name.

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

◆ pulse() [5/16]

auto xtd::forms::loading_indicators::pulse ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ pulse() [6/16]

auto xtd::forms::loading_indicators::pulse ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse() [7/16]

auto xtd::forms::loading_indicators::pulse ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse() [8/16]

auto xtd::forms::loading_indicators::pulse ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse() [9/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ pulse() [10/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, and location.

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

◆ pulse() [11/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, location, and size.

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

◆ pulse() [12/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, location, size, and name.

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

◆ pulse() [13/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ pulse() [14/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse() [15/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse() [16/16]

auto xtd::forms::loading_indicators::pulse ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse_outline() [1/16]

auto xtd::forms::loading_indicators::pulse_outline ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator.

Returns
The created loading indicator.

◆ pulse_outline() [2/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [3/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [4/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified location, size, and name.

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

◆ pulse_outline() [5/16]

auto xtd::forms::loading_indicators::pulse_outline ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ pulse_outline() [6/16]

auto xtd::forms::loading_indicators::pulse_outline ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [7/16]

auto xtd::forms::loading_indicators::pulse_outline ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [8/16]

auto xtd::forms::loading_indicators::pulse_outline ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ pulse_outline() [9/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ pulse_outline() [10/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, and location.

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

◆ pulse_outline() [11/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, location, and size.

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

◆ pulse_outline() [12/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, location, size, and name.

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

◆ pulse_outline() [13/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ pulse_outline() [14/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [15/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ pulse_outline() [16/16]

auto xtd::forms::loading_indicators::pulse_outline ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent pulse_outline loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ standard() [1/16]

auto xtd::forms::loading_indicators::standard ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator.

Returns
The created loading indicator.

◆ standard() [2/16]

auto xtd::forms::loading_indicators::standard ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ standard() [3/16]

auto xtd::forms::loading_indicators::standard ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ standard() [4/16]

auto xtd::forms::loading_indicators::standard ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified location, size, and name.

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

◆ standard() [5/16]

auto xtd::forms::loading_indicators::standard ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ standard() [6/16]

auto xtd::forms::loading_indicators::standard ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ standard() [7/16]

auto xtd::forms::loading_indicators::standard ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ standard() [8/16]

auto xtd::forms::loading_indicators::standard ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ standard() [9/16]

auto xtd::forms::loading_indicators::standard ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ standard() [10/16]

auto xtd::forms::loading_indicators::standard ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, and location.

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

◆ standard() [11/16]

auto xtd::forms::loading_indicators::standard ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, location, and size.

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

◆ standard() [12/16]

auto xtd::forms::loading_indicators::standard ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, location, size, and name.

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

◆ standard() [13/16]

auto xtd::forms::loading_indicators::standard ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ standard() [14/16]

auto xtd::forms::loading_indicators::standard ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ standard() [15/16]

auto xtd::forms::loading_indicators::standard ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ standard() [16/16]

auto xtd::forms::loading_indicators::standard ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent standard loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ system() [1/16]

auto xtd::forms::loading_indicators::system ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator.

Returns
The created loading indicator.

◆ system() [2/16]

auto xtd::forms::loading_indicators::system ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ system() [3/16]

auto xtd::forms::loading_indicators::system ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ system() [4/16]

auto xtd::forms::loading_indicators::system ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified location, size, and name.

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

◆ system() [5/16]

auto xtd::forms::loading_indicators::system ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ system() [6/16]

auto xtd::forms::loading_indicators::system ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ system() [7/16]

auto xtd::forms::loading_indicators::system ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ system() [8/16]

auto xtd::forms::loading_indicators::system ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ system() [9/16]

auto xtd::forms::loading_indicators::system ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ system() [10/16]

auto xtd::forms::loading_indicators::system ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, and location.

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

◆ system() [11/16]

auto xtd::forms::loading_indicators::system ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, location, and size.

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

◆ system() [12/16]

auto xtd::forms::loading_indicators::system ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, location, size, and name.

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

◆ system() [13/16]

auto xtd::forms::loading_indicators::system ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ system() [14/16]

auto xtd::forms::loading_indicators::system ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ system() [15/16]

auto xtd::forms::loading_indicators::system ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ system() [16/16]

auto xtd::forms::loading_indicators::system ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent system loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls() [1/16]

auto xtd::forms::loading_indicators::three_balls ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator.

Returns
The created loading indicator.

◆ three_balls() [2/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls() [3/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls() [4/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified location, size, and name.

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

◆ three_balls() [5/16]

auto xtd::forms::loading_indicators::three_balls ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls() [6/16]

auto xtd::forms::loading_indicators::three_balls ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls() [7/16]

auto xtd::forms::loading_indicators::three_balls ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls() [8/16]

auto xtd::forms::loading_indicators::three_balls ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls() [9/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ three_balls() [10/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, and location.

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

◆ three_balls() [11/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, location, and size.

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

◆ three_balls() [12/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, location, size, and name.

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

◆ three_balls() [13/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls() [14/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls() [15/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls() [16/16]

auto xtd::forms::loading_indicators::three_balls ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_bouncing() [1/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator.

Returns
The created loading indicator.

◆ three_balls_bouncing() [2/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [3/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [4/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified location, size, and name.

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

◆ three_balls_bouncing() [5/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls_bouncing() [6/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [7/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [8/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_bouncing() [9/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ three_balls_bouncing() [10/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, and location.

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

◆ three_balls_bouncing() [11/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, location, and size.

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

◆ three_balls_bouncing() [12/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, location, size, and name.

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

◆ three_balls_bouncing() [13/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls_bouncing() [14/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [15/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_bouncing() [16/16]

auto xtd::forms::loading_indicators::three_balls_bouncing ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_bouncing loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_rotation() [1/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator.

Returns
The created loading indicator.

◆ three_balls_rotation() [2/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::drawing::point & location) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location.

Parameters
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [3/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location, and size.

Parameters
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [4/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified location, size, and name.

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

◆ three_balls_rotation() [5/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( bool running) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified and running state.

Parameters
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls_rotation() [6/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, and location.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [7/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, location, and size.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [8/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified running state, location, size, and name.

Parameters
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

◆ three_balls_rotation() [9/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::forms::control & parent) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent.

Parameters
parentThe control that contains the loading indicator.
Returns
The created loading indicator.

◆ three_balls_rotation() [10/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::forms::control & parent,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, and location.

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

◆ three_balls_rotation() [11/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, location, and size.

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

◆ three_balls_rotation() [12/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::forms::control & parent,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, location, size, and name.

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

◆ three_balls_rotation() [13/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::forms::control & parent,
bool running ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, and running state.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
Returns
The created loading indicator.

◆ three_balls_rotation() [14/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, and location.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [15/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, location, and size.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
Returns
The created loading indicator.

◆ three_balls_rotation() [16/16]

auto xtd::forms::loading_indicators::three_balls_rotation ( const xtd::forms::control & parent,
bool running,
const xtd::drawing::point & location,
const xtd::drawing::size & size,
const xtd::string & name ) -> xtd::forms::loading_indicator
staticnodiscardnoexcept

Create a system-defined xtd::forms::loading_indicator that represent three_balls_rotation loading indicator with specified parent, running state, location, size, and name.

Parameters
parentThe control that contains the loading indicator.
runningtrue if the loading indicator is running; otherwise false.
locationThe loading indicator location in pixels.
sizeThe loading indicator size in pixels.
nameThe name of the loading indicator.
Returns
The created loading indicator.

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