Application.CompanyName Proprietà

Definizione

Ottiene il nome della società associato all'applicazione.

public:
 static property System::String ^ CompanyName { System::String ^ get(); };
public static string CompanyName { get; }
public static string? CompanyName { get; }
static member CompanyName : string
Public Shared ReadOnly Property CompanyName As String

Valore della proprietà

Nome della società.

Esempio

L'esempio di codice seguente ottiene questa proprietà e ne visualizza il valore in una casella di testo. L'esempio richiede che textBox1 sia stato inserito in un modulo.

private:
   void PrintCompanyName()
   {
      textBox1->Text = String::Format( "The company name is: {0}",
         Application::CompanyName );
   }
private void PrintCompanyName()
{
    textBox1.Text = "The company name is: " + Application.CompanyName;
}
Private Sub PrintCompanyName()
   textBox1.Text = "The company name is: " & _
      Application.CompanyName
End Sub

Si applica a

Vedi anche