다음을 통해 공유


AppointmentStore.ShowRemoveAppointmentAsync 메서드

정의

오버로드

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)

매개 변수

localId
String

Platform::String

winrt::hstring

제거할 약속의 LocalId 입니다.

selection
Rect

Rect는 사용자 선택 영역(예: 단추 누르기)의 사각형 영역으로, 운영 체제에서 해당 사각형 영역 내에 있지 않고 약속 제거 UI를 표시합니다. 예를 들어 앱이 단추를 사용하여 Rect를 표시하는 경우 약속 제거 UI가 단추 주위에 겹치지 않고 표시되도록 단추의 Rect 를 전달합니다.

반환

이 메서드가 완료되면 약속 공급자 앱이 약속을 제거했는지 여부를 나타내는 부울 값을 반환합니다.

특성

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)

매개 변수

localId
String

Platform::String

winrt::hstring

제거할 약속의 LocalId 입니다.

selection
Rect

Rect는 사용자 선택 영역(예: 단추 누르기)의 사각형 영역으로, 운영 체제에서 해당 사각형 영역 내에 있지 않고 약속 제거 UI를 표시합니다. 예를 들어 앱이 단추를 사용하여 Rect를 표시하는 경우 약속 제거 UI가 단추 주위에 겹치지 않고 표시되도록 단추의 Rect 를 전달합니다.

preferredPlacement
Placement

약속 제거 UI의 기본 배치를 설명하는 배치 입니다.

instanceStartDate
DateTime DateTimeOffset

약속의 시작 날짜 및 시간은 제거할 instance. 이 매개 변수는 instance 원래 시작 날짜여야 합니다.

반환

이 메서드가 완료되면 약속 공급자 앱이 약속을 제거했는지 여부를 나타내는 부울 값을 반환합니다.

특성

Windows 요구 사항

앱 기능
appointmentsSystem

추가 정보

적용 대상