다음을 통해 공유


PreviewTeamView.SharingScreenBoundsChanged 이벤트

정의

나가는 화면 공유를 위한 사각형의 범위가 변경되었습니다.

// Register
event_token SharingScreenBoundsChanged(TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;

// Revoke with event_token
void SharingScreenBoundsChanged(event_token const* cookie) const;

// Revoke with event_revoker
PreviewTeamView::SharingScreenBoundsChanged_revoker SharingScreenBoundsChanged(auto_revoke_t, TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;
public event TypedEventHandler<PreviewTeamView,object> SharingScreenBoundsChanged;
function onSharingScreenBoundsChanged(eventArgs) { /* Your code */ }
previewTeamView.addEventListener("sharingscreenboundschanged", onSharingScreenBoundsChanged);
previewTeamView.removeEventListener("sharingscreenboundschanged", onSharingScreenBoundsChanged);
- or -
previewTeamView.onsharingscreenboundschanged = onSharingScreenBoundsChanged;
Public Custom Event SharingScreenBoundsChanged As TypedEventHandler(Of PreviewTeamView, Object) 

이벤트 유형

적용 대상