Metodo StatusBar.ShowTextUpdates

determina se StatusBar viene illustrato un testo agli aggiornamenti.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
Function ShowTextUpdates ( _
    TextUpdates As Boolean _
) As Boolean
bool ShowTextUpdates(
    bool TextUpdates
)
bool ShowTextUpdates(
    bool TextUpdates
)
abstract ShowTextUpdates : 
        TextUpdates:bool -> bool 
function ShowTextUpdates(
    TextUpdates : boolean
) : boolean

Parametri

  • TextUpdates
    Tipo: System.Boolean
    obbligatorio.Indica se visualizzare gli aggiornamenti del testo.

Valore restituito

Tipo: System.Boolean
un valore booleano che indica se StatusBar aggiornamenti del testo di in.

Note

ShowTextUpdates il metodo è utile, ad esempio quando si esegue una procedura guidata in cui non si desidera che il testo da visualizzare da un'operazione di ricerca e per sostituire.

Esempi

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

Sicurezza di .NET Framework

Vedere anche

Riferimenti

StatusBar Interfaccia

Spazio dei nomi EnvDTE