AppointmentItem.Start プロパティ (Outlook)
起動する日付と時刻の Outlook アイテムを示す 日付 を設定または返します。 値の取得と設定が可能です。
構文
式。開始
式AppointmentItem オブジェクトを表す変数。
例
この Visual Basic for Applications (VBA) の例は、 createitem メソッド を使用して予定を作成し、 MeetingStatus を使用して、ミーティングのステータスを「会議」を設定するのには必須と任意の出席者に会議出席依頼には。
Sub ScheduleMeeting()
Dim myItem as Outlook.AppointmentItem
Dim myRequiredAttendee As Outlook.Recipient
Dim myOptionalAttendee As Outlook.Recipient
Dim myResourceAttendee As Outlook.Recipient
Set myItem = Application.CreateItem(olAppointmentItem)
myItem.MeetingStatus = olMeeting
myItem.Subject = "Strategy Meeting"
myItem.Location = "Conference Room B"
myItem.Start = #9/24/2003 1:30:00 PM#
myItem.Duration = 90
Set myRequiredAttendee = myItem.Recipients.Add ("Nate Sun")
myRequiredAttendee.Type = olRequired
Set myOptionalAttendee = myItem.Recipients.Add ("Kevin Kennedy")
myOptionalAttendee.Type = olOptional
Set myResourceAttendee = myItem.Recipients.Add("Conference Room B")
myResourceAttendee.Type = olResource
myItem.Display
End Sub
関連項目
する方法: 予定の XML データを Outlook 予定のオブジェクトにインポートする
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。