PreviewTeamView.SharingScreenBoundsChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Los límites del rectángulo para el uso compartido de pantalla saliente han cambiado.
// 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)
Tipo de evento
TypedEventHandler<PreviewTeamView,IInspectable>