StatusBar::Highlight Method (Boolean)
Visual Studio 2015
Toggles highlighting of text within the StatusBar.
Assembly: EnvDTE (in EnvDTE.dll)
The Highlight setting remains in effect until the text in the StatusBar is either cleared or set.
Sub HighlightExample() Dim SBar As StatusBar SBar = DTE.StatusBar SBar.Text = "Status Bar testing message." SBar.Highlight(True) End Sub
Show: