Compartir a través de


View.Reset Método

Definición

Restablece la configuración original de una vista integrada de Microsoft Outlook.

public:
 void Reset();
public void Reset ();
Public Sub Reset ()

Comentarios

Este método sólo funciona con vistas integradas de Outlook.

Para restablecer correctamente la vista actual, debe realizar una clase View.Reset y, a continuación, .Apply() En el siguiente ejemplo de código se muestra el orden de las llamadas:

Sub ResetView()
    Dim v as Outlook.View
    ' Save a reference to the current view object
    Set v = Application.ActiveExplorer().CurrentView
    ' Reset and then apply the current view
    v.Reset
    v.Apply
End Sub
private void ResetView()
{
    // Save a reference to the current view object    
    Outlook.View v = Application.ActiveExplorer().CurrentView 
        as Outlook.View; 

    // Reset and then apply the current view
    v.Reset();
    v.Apply();
}

Se aplica a