PreviewTeamView.IsFullScreenChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that the app window is now full screen.
// Register
event_token IsFullScreenChanged(TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;
// Revoke with event_token
void IsFullScreenChanged(event_token const* cookie) const;
// Revoke with event_revoker
PreviewTeamView::IsFullScreenChanged_revoker IsFullScreenChanged(auto_revoke_t, TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;
public event TypedEventHandler<PreviewTeamView,object> IsFullScreenChanged;
function onIsFullScreenChanged(eventArgs) { /* Your code */ }
previewTeamView.addEventListener("isfullscreenchanged", onIsFullScreenChanged);
previewTeamView.removeEventListener("isfullscreenchanged", onIsFullScreenChanged);
- or -
previewTeamView.onisfullscreenchanged = onIsFullScreenChanged;
Public Custom Event IsFullScreenChanged As TypedEventHandler(Of PreviewTeamView, Object)
Event Type
TypedEventHandler<PreviewTeamView,IInspectable>
Remarks
To verify the current state, check the IsFullScreen property.