Udostępnij za pośrednictwem


FileVersionInfo.LegalTrademarks Właściwość

Definicja

Pobiera znaki towarowe i zarejestrowane znaki towarowe, które mają zastosowanie do pliku.

public:
 property System::String ^ LegalTrademarks { System::String ^ get(); };
public string? LegalTrademarks { get; }
public string LegalTrademarks { get; }
member this.LegalTrademarks : string
Public ReadOnly Property LegalTrademarks As String

Wartość właściwości

Znaki towarowe i zarejestrowane znaki towarowe, które mają zastosowanie do pliku lub null jeśli plik nie zawiera informacji o wersji.

Przykłady

Poniższe przykładowe wywołania GetVersionInfo w celu pobrania FileVersionInfo notatnika. Następnie drukuje element LegalTrademarks w polu tekstowym. W tym kodzie założono, że textBox1 wystąpienie zostało utworzone.

private:
    void GetTrademarks()
    {
        // Get the file version for the notepad.
        FileVersionInfo^ myFileVersionInfo =
            FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );

        // Print the trademarks.
        textBox1->Text = String::Concat( "Trademarks: ", myFileVersionInfo->LegalTrademarks );
    }
private void GetTrademarks()
{
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo =
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");

    // Print the trademarks.
    textBox1.Text = "Trademarks: " + myFileVersionInfo.LegalTrademarks;
}
Private Sub GetTrademarks()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
    
    ' Print the trademarks.
    textBox1.Text = "Trademarks: " & myFileVersionInfo.LegalTrademarks
End Sub

Uwagi

Znaki towarowe zawierają pełny tekst wszystkich powiadomień, symboli prawnych i numerów znaków towarowych.

Dotyczy