Appointment.StartTime 属性

定义

获取或设置约会的开始时间。 StartTime 的类型为 DateTime

public:
 property DateTime StartTime { DateTime get(); void set(DateTime value); };
DateTime StartTime();

void StartTime(DateTime value);
public System.DateTimeOffset StartTime { get; set; }
var dateTime = appointment.startTime;
appointment.startTime = dateTime;
Public Property StartTime As DateTimeOffset

属性值

用作约会开始时间的日期和时间。

Windows 要求

应用功能
appointmentsSystem

注解

此属性使用表示日期和时间的对象,该对象的表示方式因编程语言而异。

  • 在 JavaScript 中,使用 Date 对象设置 StartTime 值。 例如,此代码将 StartTime 值设置为特定的日期和时间。 '''javascript appointment.startTime = new Date (2015, 9, 10, 9) ;2015 年 10 月 10 日上午 9:00


+ In Visual C++ component extensions (C++/CX), use a <xref:Windows.Foundation.DateTime?text=DateTime> structure value.
+ In C# or Microsoft Visual Basic, you use a [System.DateTimeOffset](/dotnet/api/system.datetimeoffset?view=dotnet-uwp-10.0&preserve-view=true) value. You can use utility API of [System.DateTimeOffset](/dotnet/api/system.datetimeoffset?view=dotnet-uwp-10.0&preserve-view=true) to generate a [DateTimeOffset](/dotnet/api/system.datetimeoffset?view=dotnet-uwp-10.0&preserve-view=true) from different inputs (local time, parsed strings, and so on) and set the value.

适用于