xtd 0.2.0
Loading...
Searching...
No Matches

◆ company_name()

static xtd::ustring xtd::forms::application::company_name ( )
staticnoexcept

Gets the company name associated with the application.

Returns
The company name.
Examples
The following code example gets this property and displays its value in a text box. The example requires that textBox1 has been placed on a form.
void PrintCompanyName() {
textBox1.Text(xtd::ustring::format("The company name is: {0}", application::company_name);
}
static xtd::ustring company_name() noexcept
Gets the company name associated with the application.
static ustring format(const ustring &fmt, args_t &&... args)
Writes the text representation of the specified arguments list, to string using the specified format ...
Definition ustring.h:1177