다음을 통해 공유


AppointmentStore.ShowReplaceAppointmentAsync 메서드

정의

오버로드

ShowReplaceAppointmentAsync(String, Appointment, Rect)

약속 공급자 약속 바꾸기 UI를 표시하여 사용자가 약속을 바꿀 수 있도록 합니다.

ShowReplaceAppointmentAsync(String, Appointment, Rect, Placement, DateTime)

약속 공급자 약속 바꾸기 UI를 표시하여 사용자가 약속을 바꿀 수 있도록 합니다.

ShowReplaceAppointmentAsync(String, Appointment, Rect)

약속 공급자 약속 바꾸기 UI를 표시하여 사용자가 약속을 바꿀 수 있도록 합니다.

public:
 virtual IAsyncOperation<Platform::String ^> ^ ShowReplaceAppointmentAsync(Platform::String ^ localId, Appointment ^ appointment, Rect selection) = ShowReplaceAppointmentAsync;
/// [Windows.Foundation.Metadata.Overload("ShowReplaceAppointmentAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<winrt::hstring> ShowReplaceAppointmentAsync(winrt::hstring const& localId, Appointment const& appointment, Rect const& selection);
/// [Windows.Foundation.Metadata.Overload("ShowReplaceAppointmentAsync")]
IAsyncOperation<winrt::hstring> ShowReplaceAppointmentAsync(winrt::hstring const& localId, Appointment const& appointment, Rect const& selection);
[Windows.Foundation.Metadata.Overload("ShowReplaceAppointmentAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<string> ShowReplaceAppointmentAsync(string localId, Appointment appointment, Rect selection);
[Windows.Foundation.Metadata.Overload("ShowReplaceAppointmentAsync")]
public IAsyncOperation<string> ShowReplaceAppointmentAsync(string localId, Appointment appointment, Rect selection);
function showReplaceAppointmentAsync(localId, appointment, selection)
Public Function ShowReplaceAppointmentAsync (localId As String, appointment As Appointment, selection As Rect) As IAsyncOperation(Of String)

매개 변수

localId
String

Platform::String

winrt::hstring

바꿀 약속의 LocalId 입니다.

appointment
Appointment

기존 약속을 바꿀 약속을 나타내는 개체입니다.

selection
Rect

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

반환

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

이 메서드가 완료되면 기존 약속을 대체한 약속의 RoamingId를 나타내는 String 개체를 반환합니다.

특성

Windows 요구 사항

앱 기능
appointmentsSystem

추가 정보

적용 대상

ShowReplaceAppointmentAsync(String, Appointment, Rect, Placement, DateTime)

약속 공급자 약속 바꾸기 UI를 표시하여 사용자가 약속을 바꿀 수 있도록 합니다.

public:
 virtual IAsyncOperation<Platform::String ^> ^ ShowReplaceAppointmentAsync(Platform::String ^ localId, Appointment ^ appointment, Rect selection, Placement preferredPlacement, DateTime instanceStartDate) = ShowReplaceAppointmentAsync;
/// [Windows.Foundation.Metadata.Overload("ShowReplaceAppointmentWithPlacementAndDateAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<winrt::hstring> ShowReplaceAppointmentAsync(winrt::hstring const& localId, Appointment const& appointment, Rect const& selection, Placement const& preferredPlacement, DateTime const& instanceStartDate);
/// [Windows.Foundation.Metadata.Overload("ShowReplaceAppointmentWithPlacementAndDateAsync")]
IAsyncOperation<winrt::hstring> ShowReplaceAppointmentAsync(winrt::hstring const& localId, Appointment const& appointment, Rect const& selection, Placement const& preferredPlacement, DateTime const& instanceStartDate);
[Windows.Foundation.Metadata.Overload("ShowReplaceAppointmentWithPlacementAndDateAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<string> ShowReplaceAppointmentAsync(string localId, Appointment appointment, Rect selection, Placement preferredPlacement, System.DateTimeOffset instanceStartDate);
[Windows.Foundation.Metadata.Overload("ShowReplaceAppointmentWithPlacementAndDateAsync")]
public IAsyncOperation<string> ShowReplaceAppointmentAsync(string localId, Appointment appointment, Rect selection, Placement preferredPlacement, System.DateTimeOffset instanceStartDate);
function showReplaceAppointmentAsync(localId, appointment, selection, preferredPlacement, instanceStartDate)
Public Function ShowReplaceAppointmentAsync (localId As String, appointment As Appointment, selection As Rect, preferredPlacement As Placement, instanceStartDate As DateTimeOffset) As IAsyncOperation(Of String)

매개 변수

localId
String

Platform::String

winrt::hstring

바꿀 약속의 LocalId 입니다.

appointment
Appointment

기존 약속을 바꿀 약속을 나타내는 개체입니다.

selection
Rect

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

preferredPlacement
Placement

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

instanceStartDate
DateTime DateTimeOffset

약속의 시작 날짜와 시간은 바꿀 instance.

반환

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

이 메서드가 완료되면 기존 약속을 대체한 약속의 RoamingId를 나타내는 String 개체를 반환합니다.

특성

Windows 요구 사항

앱 기능
appointmentsSystem

설명

instanceStartTime 매개 변수는 instance 원래 시작 날짜여야 합니다.

추가 정보

적용 대상