Compartir a través de


View.Apply Método

Definición

Se aplica a la vista a la interfaz de usuario de Microsoft Outlook.

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

Comentarios

Para restablecer correctamente la vista actual, debe hacer y Reset() , a continuación, ver.aplicar. 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
    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