AppointmentStore.ShowRemoveAppointmentAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ShowRemoveAppointmentAsync(String, Rect) |
顯示 [約會提供者移除約會 UI],讓使用者能夠移除約會。 |
ShowRemoveAppointmentAsync(String, Rect, Placement, DateTime) |
顯示 [約會提供者移除約會 UI],讓使用者能夠移除約會。 |
ShowRemoveAppointmentAsync(String, Rect)
顯示 [約會提供者移除約會 UI],讓使用者能夠移除約會。
public:
virtual IAsyncOperation<bool> ^ ShowRemoveAppointmentAsync(Platform::String ^ localId, Rect selection) = ShowRemoveAppointmentAsync;
/// [Windows.Foundation.Metadata.Overload("ShowRemoveAppointmentAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> ShowRemoveAppointmentAsync(winrt::hstring const& localId, Rect const& selection);
[Windows.Foundation.Metadata.Overload("ShowRemoveAppointmentAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> ShowRemoveAppointmentAsync(string localId, Rect selection);
function showRemoveAppointmentAsync(localId, selection)
Public Function ShowRemoveAppointmentAsync (localId As String, selection As Rect) As IAsyncOperation(Of Boolean)
參數
- selection
- Rect
Rect是使用者選取 (的矩形區域,例如按下按鈕) ,作業系統會在其中顯示移除約會 UI,而不是在該矩形區域內。 例如,如果應用程式使用按鈕來顯示 Rect,請傳遞按鈕的 Rect ,讓 [移除約會] UI 在按鈕周圍顯示,而不會重迭。
傳回
當這個方法完成時,它會傳回 布林 值,指出約會提供者應用程式是否移除約會。
- 屬性
Windows 需求
應用程式功能 |
appointmentsSystem
|
另請參閱
適用於
ShowRemoveAppointmentAsync(String, Rect, Placement, DateTime)
顯示 [約會提供者移除約會 UI],讓使用者能夠移除約會。
public:
virtual IAsyncOperation<bool> ^ ShowRemoveAppointmentAsync(Platform::String ^ localId, Rect selection, Placement preferredPlacement, DateTime instanceStartDate) = ShowRemoveAppointmentAsync;
/// [Windows.Foundation.Metadata.Overload("ShowRemoveAppointmentWithPlacementAndDateAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> ShowRemoveAppointmentAsync(winrt::hstring const& localId, Rect const& selection, Placement const& preferredPlacement, DateTime const& instanceStartDate);
[Windows.Foundation.Metadata.Overload("ShowRemoveAppointmentWithPlacementAndDateAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> ShowRemoveAppointmentAsync(string localId, Rect selection, Placement preferredPlacement, System.DateTimeOffset instanceStartDate);
function showRemoveAppointmentAsync(localId, selection, preferredPlacement, instanceStartDate)
Public Function ShowRemoveAppointmentAsync (localId As String, selection As Rect, preferredPlacement As Placement, instanceStartDate As DateTimeOffset) As IAsyncOperation(Of Boolean)
參數
- selection
- Rect
Rect是使用者選取 (的矩形區域,例如按下按鈕) ,作業系統會在其中顯示移除約會 UI,而不是在該矩形區域內。 例如,如果應用程式使用按鈕來顯示 Rect,請傳遞按鈕的 Rect ,讓 [移除約會] UI 在按鈕周圍顯示,而不會重迭。
- instanceStartDate
- DateTime DateTimeOffset
要移除之約會實例的開始日期和時間。 此參數必須是實例的原始開始日期。
傳回
當這個方法完成時,它會傳回 布林 值,指出約會提供者應用程式是否移除約會。
- 屬性
Windows 需求
應用程式功能 |
appointmentsSystem
|