StatusBar::ShowTextUpdates Method (Boolean)
Visual Studio 2015
Determines whether the StatusBar shows text updates.
Assembly: EnvDTE (in EnvDTE.dll)
Parameters
- TextUpdates
-
Type:
System::Boolean
Required. Indicates whether to show text updates.
Return Value
Type: System::BooleanA Boolean value indicating whether the StatusBar shows text updates.
The ShowTextUpdates method is useful, for example, when running a Wizard where you do not want text to display from an operation such as Search and Replace.
Sub ShowTextUpdatesExample() Dim SBar As StatusBar SBar = DTE.StatusBar SBar.Text = "Hello world." MsgBox("Turning off text updates...") SBar.ShowTextUpdates(False) SBar.Text = "Goodbye world." End Sub
Show: