View.Reset Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Rétablit les paramètres d’origine d’une vue Microsoft Outlook intégrée.
public:
void Reset();
public void Reset ();
Public Sub Reset ()
Remarques
Cette méthode n'est valable que pour les affichages prédéfinis de Microsoft Outlook.
Pour réinitialiser correctement l’affichage actuel, vous devez effectuer un View.Reset , puis un Apply(). L’exemple de code suivant illustre l’ordre des appels :
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();
}