VCLinkerTool.SuppressStartupBanner Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob die Anzeige des Startbanners und der Informationsmeldungen unterdrückt werden soll, oder legt diesen fest.

public:
 property bool SuppressStartupBanner { bool get(); void set(bool value); };
public:
 property bool SuppressStartupBanner { bool get(); void set(bool value); };
[System.Runtime.InteropServices.DispId(6)]
public bool SuppressStartupBanner { [System.Runtime.InteropServices.DispId(6)] get; [System.Runtime.InteropServices.DispId(6)] set; }
[<System.Runtime.InteropServices.DispId(6)>]
[<get: System.Runtime.InteropServices.DispId(6)>]
[<set: System.Runtime.InteropServices.DispId(6)>]
member this.SuppressStartupBanner : bool with get, set
Public Property SuppressStartupBanner As Boolean

Eigenschaftswert

Boolean

true, wenn das Banner während des Starts unterdrückt wird, andernfalls false.

Attribute

Beispiele

Im folgenden Beispiel wird die-Eigenschaft des Linker SuppressStartupBanner in der integrierten Entwicklungsumgebung (IDE) geändert:

' add reference to Microsoft.VisualStudio.VCProjectEngine  
Imports EnvDTE  
Imports Microsoft.VisualStudio.VCProjectEngine  

Public Module Module1  
    Sub Test()  
        Dim prj As VCProject  
        Dim cfgs, tools As IVCCollection  
        Dim cfg As VCConfiguration  
        Dim tool As VCLinkerTool  
        prj = DTE.Solution.Projects.Item(1).Object  
        cfgs = prj.Configurations  
        cfg = cfgs.Item(1)  
        tool = cfg.Tools("VCLinkerTool")  
        tool.SuppressStartupBanner = False  
    End Sub  
End Module  

Hinweise

SuppressStartupBanner macht die Funktionen der/NOLOGO-Option ( Start Banner unterdrücken) , der Option für die Ausführung von Bibliothekar (die Option zum Unterdrücken von Start Banner) (Option Start Banner unterdrücken) (C/C++) , der/NOLOGO-Option des BSCMake-Tools und der Option " /nologo" des- <xref:Microsoft.VisualStudio.VCProjectEngine.VCWebServiceProxyGeneratorTool> Objekts verfügbar.

Gilt für