共用方式為


Appointment.Duration 屬性

定義

取得或設定時間範圍,表示約會的時間持續時間。 Duration 的類型為 TimeSpan ,而且必須是非負數。

public:
 property TimeSpan Duration { TimeSpan get(); void set(TimeSpan value); };
TimeSpan Duration();

void Duration(TimeSpan value);
public System.TimeSpan Duration { get; set; }
var timeSpan = appointment.duration;
appointment.duration = timeSpan;
Public Property Duration As TimeSpan

屬性值

代表約會持續時間的時間範圍。 持續時間不能是負值。

Windows 需求

應用程式功能
appointmentsSystem

備註

這個屬性會使用時間範圍值,根據您使用的程式設計語言,以不同的方式表示。

  • 在 JavaScript 中,以代表時間間隔的 Number 設定 Duration 值。 TimeSpan值的每個單位都代表 1 毫秒。 例如,此程式碼會將 Duration 值設定為 60 分鐘, (一小時) 。 '''javascript appointment.duration = (60 * 60 * 1000) ;以 1 毫秒為單位的 1 小時


+ In Visual C++ component extensions (C++/CX), use a <xref:Windows.Foundation.TimeSpan?text=TimeSpan> structure value with a **Duration** value. In Visual C++ component extensions (C++/CX), each unit for a **Duration** value represents 100 nanoseconds.
+ In C# or Microsoft Visual Basic, you use a [System.TimeSpan](/dotnet/api/system.timespan?view=dotnet-uwp-10.0&preserve-view=true) value. You can use utility API of [System.TimeSpan](/dotnet/api/system.timespan?view=dotnet-uwp-10.0&preserve-view=true) such as [FromSeconds](/dotnet/api/system.timespan.fromseconds?view=dotnet-uwp-10.0&preserve-view=true) to generate a [System.TimeSpan](/dotnet/api/system.timespan?view=dotnet-uwp-10.0&preserve-view=true) and set the value.




> [!NOTE]
> In JavaScript, <xref:Windows.Foundation.TimeSpan?text=TimeSpan> is accessed as a value, not as an object. For example, use `var a = 10000`, not `var a = { duration: 10000 }`. Also, in JavaScript, <xref:Windows.Foundation.TimeSpan?text=TimeSpan> is treated as the number of millisecond intervals, not the number of 100-nanosecond intervals so you can lose precision when you port <xref:Windows.Foundation.TimeSpan?text=TimeSpan> values between languages.

適用於