StatusBar.ShowTextUpdates(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the StatusBar shows text updates.
public:
bool ShowTextUpdates(bool TextUpdates);
public:
bool ShowTextUpdates(bool TextUpdates);
bool ShowTextUpdates(bool TextUpdates);
[System.Runtime.InteropServices.DispId(10)]
public bool ShowTextUpdates (bool TextUpdates);
[<System.Runtime.InteropServices.DispId(10)>]
abstract member ShowTextUpdates : bool -> bool
Public Function ShowTextUpdates (TextUpdates As Boolean) As Boolean
Parameters
- TextUpdates
- Boolean
Required. Indicates whether to show text updates.
Returns
A Boolean value indicating whether the StatusBar shows text updates.
- Attributes
Examples
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
Remarks
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.