This topic has not yet been rated - Rate this topic

UIStatus enumeration

Indicates the status of the file picker UI.

Syntax


var value = Windows.Storage.Provider.UIStatus.unavailable;

Attributes

VersionAttribute(NTDDI_WIN8)

Members

The UIStatus enumeration has these members.

MemberValueDescription
Unavailable | unavailable0

The file picker is not showing UI and UI can't be requested.

If the app that provides updates requests UI by completing its response to a FileUpdateRequested event and setting the FileUpdateRequest.Status to FileUpdateStatus.UserInputNeeded, the app will be closed immediately and the failure may be reported to the app that triggered the updates.

Hidden | hidden1

The file picker is not showing UI, but UI can be requested.

If the app that provides updates requests UI by completing its response to a FileUpdateRequested event and setting the FileUpdateRequest.Status to FileUpdateStatus.UserInputNeeded, a UIRequested event will fire to indicate that UI will display immediately, and a new FileUpdateRequested event will fire (for the same file) so that the app can get the user's input and complete the request successfully.

Visible | visible2

The file picker is currently showing UI because UI was requested by the app.

Complete | complete3

The file picker is currently showing UI and all

This indicates that UI is presently being shown, and that the app has finished responding to all FileUpdateRequested events.

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.Storage.Provider
Windows::Storage::Provider [C++]

Metadata

Windows.winmd

 

 

Build date: 12/4/2012

© 2013 Microsoft. All rights reserved.