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.
| C# | Visual Basic | Visual C++ |
public enum NSPasteboardReadingOptions
Public Enumeration NSPasteboardReadingOptions
public enum class NSPasteboardReadingOptions
| Member | Description |
|---|---|
| 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. |
- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)