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를 표시하는 경우 약속 제거 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)
매개 변수
- selection
- Rect
Rect는 사용자 선택 영역(예: 단추 누르기)의 사각형 영역으로, 운영 체제에서 해당 사각형 영역 내에 있지 않고 약속 제거 UI를 표시합니다. 예를 들어 앱이 단추를 사용하여 Rect를 표시하는 경우 약속 제거 UI가 단추 주위에 겹치지 않고 표시되도록 단추의 Rect 를 전달합니다.
- instanceStartDate
- DateTime DateTimeOffset
약속의 시작 날짜 및 시간은 제거할 instance. 이 매개 변수는 instance 원래 시작 날짜여야 합니다.
반환
이 메서드가 완료되면 약속 공급자 앱이 약속을 제거했는지 여부를 나타내는 부울 값을 반환합니다.
- 특성
Windows 요구 사항
앱 기능 |
appointmentsSystem
|