View.Reset Method

Definition

Resets a built-in Microsoft Outlook view to its original settings.

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

Remarks

This method works only on built-in Outlook views.

To properly reset the current view, you must do a View.Reset and then a Apply(). The code sample below illustrates the order of the calls:

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();
}

Applies to