Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SettingsFlyout.onbeforehide event

Applies to Windows only

[settingFlyout is no longer available for use as of Windows Library for JavaScript (WinJS) 4.0 Preview.]

Raised just before hiding a SettingsFlyout.

Syntax


function handler(eventInfo) { /* Your code */ }
 
// addEventListener syntax
settingsFlyout.addEventListener("beforehide", handler);
settingsFlyout.removeEventListener("beforehide", handler);
 
- or -

settingsFlyout.onbeforehide = handler;


Event information

SynchronousNo
BubblesYes
CancelableYes

 

Event handler parameters

eventInfo

Type: Event

An object that contains information about the event.

Requirements

Minimum WinJS version

WinJS 1.0

Namespace

WinJS.UI

See also

SettingsFlyout

 

 

Show: