MonobjcMonobjc Documented Class Library
NSPasteboardReadingOptions Enumeration
NamespacesMonobjc.AppKitNSPasteboardReadingOptions

Options to specify how data on the pasteboard should be interpreted to initialize an object in initWithPasteboardPropertyList:ofType:.

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public enum NSPasteboardReadingOptions
Public Enumeration NSPasteboardReadingOptions
public enum class NSPasteboardReadingOptions
Members
MemberDescription
NSPasteboardReadingAsData

Reads data from the pasteboard as-is and returns it as an NSData object.

This is the default value.

Available in Mac OS X v10.6 and later.


NSPasteboardReadingAsString

Reads data from the pasteboard and converts it to an NSString object.

Available in Mac OS X v10.6 and later.


NSPasteboardReadingAsPropertyList

Reads data from the pasteboard and un-serializes it as a property list.

Available in Mac OS X v10.6 and later.


NSPasteboardReadingAsKeyedArchive

Reads data from the pasteboard and uses initWithCoder: to initialize the object.

Available in Mac OS X v10.6 and later.


Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)