View.GoToDate(DateTime) 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.
Modifie la date utilisée par l’affichage actuel pour afficher les informations.
public:
void GoToDate(DateTime Date);
public void GoToDate (DateTime Date);
Public Sub GoToDate (Date As DateTime)
Paramètres
- Date
- DateTime
Date à laquelle l'affichage doit être modifié.
Remarques
Pour spécifier une date à laquelle accéder dans une vue actuelle, telle qu’un CalendarView objet, vous devez d’abord obtenir un View objet pour l’affichage actuel en utilisant CurrentView au lieu de CurrentView. L’exemple de code suivant illustre comment exécuter cette action.
Sub TestGoToDate()
Dim oCV As Outlook.CalendarView
Dim oExpl As Outlook.Explorer
Dim datGoTo As Date
datGoTo = "11/7/2005"
' Display the contents of the Calendar default folder.
oExpl = Application.Explorers.Add( _
Application.Session.GetDefaultFolder( -
Outlook.OlDefaultFolders.olFolderCalendar), _
Outlook.OlFolderDisplayMode.olFolderDisplayFolderOnly)
oExpl.Display()
' Retrieve the current view by calling the
' CurrentView property of the Explorer object.
oCV = oExpl.CurrentView
' Set the CalendarViewMode property of the
' current view to display items by day.
oCV.CalendarViewMode = Outlook.OlCalendarViewMode.olCalendarViewDay
' Call the GoToDate method to set the date
' for which information is displayed in the view.
oCV.GoToDate(datGoTo)
End Sub
private void TestGoToDate()
{
Outlook.CalendarView oCV;
Outlook.Explorer oExpl;
System.DateTime datGoTo;
datGoTo = DateTime.Parse("11/7/2005");
// Display the contents of the Calendar default folder.
oExpl = Application.Explorers.Add(
Application.Session.GetDefaultFolder(
Outlook.OlDefaultFolders.olFolderCalendar),
Outlook.OlFolderDisplayMode.olFolderDisplayFolderOnly);
oExpl.Display();
// Retrieve the current view by calling the
// CurrentView property of the Explorer object.
oCV = (Outlook.CalendarView)(oExpl.CurrentView);
// Set the CalendarViewMode property of the
// current view to display items by day.
oCV.CalendarViewMode =
Outlook.OlCalendarViewMode.olCalendarViewDay;
// Call the GoToDate method to set the date
// for which information is displayed in the view.
oCV.GoToDate(datGoTo);
}