UIDocumentState Enum

Definition

An enumeration indicating the editing/saving state of a UIDocument.

This enumeration supports a bitwise combination of its member values.

[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
[System.Flags]
public enum UIDocumentState
type UIDocumentState = 
Inheritance
UIDocumentState
Attributes

Fields

Closed 1

Either the document did not open successfully or has been closed.

EditingDisabled 8

The document is busy and the application developer must not allow the application user to introduce changes.

InConflict 2

A conflict exists. The application developer should resolve these by examining the results of GetOtherVersions(NSUrl).

Normal 0

The UIDocument is open, editing is allowed, and there are no detected conflicts.

ProgressAvailable 16

Indicates the progress information is available for the downloading document.

SavingError 4

Something has interfered with the proper saving of the UIDocument.

Applies to

See also