View.Apply Method

Definition

Applies the view to the Microsoft Outlook user interface.

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

Remarks

To properly reset the current view, you must do a Reset() and then a View.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
    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