FileVersionInfo.LegalCopyright Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient toutes les mentions de droits d'auteur s'appliquant au fichier spécifié.
public:
property System::String ^ LegalCopyright { System::String ^ get(); };
public string? LegalCopyright { get; }
public string LegalCopyright { get; }
member this.LegalCopyright : string
Public ReadOnly Property LegalCopyright As String
Valeur de propriété
Mentions de droits d'auteur s'appliquant au fichier spécifié.
Exemples
L’exemple suivant appelle GetVersionInfo pour obtenir le FileVersionInfo pour le Bloc-notes. Ensuite, il imprime le LegalCopyright dans une zone de texte. Ce code suppose qu’il textBox1
a été instancié.
private:
void GetCopyright()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print the copyright notice.
textBox1->Text = String::Concat( "Copyright notice: ", myFileVersionInfo->LegalCopyright );
}
private void GetCopyright()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the copyright notice.
textBox1.Text = "Copyright notice: " + myFileVersionInfo.LegalCopyright;
}
Private Sub GetCopyright()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the copyright notice.
textBox1.Text = "Copyright notice: " & myFileVersionInfo.LegalCopyright
End Sub
Remarques
Cela doit inclure le texte intégral de tous les avis, symboles juridiques, dates de copyright, etc. ou null
si le fichier ne contient pas d’informations sur la version.