Up
Authors
- Daniel Ferreira (
dtf@stanford.edu
)
-
Date: Generated at 2025-07-12 14:18:56 +0000
class for wrapping pasteboard content
Copyright: (C) (C) 2017 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSPasteboardItem.h
- Conforms to:
- NSPasteboardReading
- NSPasteboardWriting
Availability: MacOS-X 10.6.0
Description forthcoming.
Instance Variables
- (NSString*)
availableTypeFromArray: (NSArray*)types;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (NSData*)
dataForType: (NSString*)type;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (id)
propertyListForType: (NSString*)type;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (BOOL)
setData: (NSData*)data
forType: (NSString*)type;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (BOOL)
setDataProvider: (id<
NSPasteboardItemDataProvider>)dataProvider
forTypes: (NSArray*)types;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (BOOL)
setPropertyList: (id)propertyList
forType: (NSString*)type;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (BOOL)
setString: (NSString*)string
forType: (NSString*)type;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (NSString*)
stringForType: (NSString*)type;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (NSArray*)
types;
Availability: MacOS-X 10.6.0
Description forthcoming.
Instance Variables for NSPasteboardItem Class
@protected NSMutableDictionary*
_dataMap;
Availability: MacOS-X 10.6.0
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSMutableDictionary*
_providerMap;
Availability: MacOS-X 10.6.0
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSMutableArray*
_types;
Availability: MacOS-X 10.6.0
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
- Declared in:
- AppKit/NSPasteboardItem.h
Availability: MacOS-X 10.6.0
Description forthcoming.
- (void)
pasteboardFinishedWithDataProvider: (
NSPasteboard*)pasteboard;
Availability: MacOS-X 10.6.0
Description forthcoming.
- Declared in:
- AppKit/NSPasteboardItem.h
Availability: MacOS-X 10.6.0
Description forthcoming.
- (void)
pasteboard: (
NSPasteboard*)pasteboard
item: (
NSPasteboardItem*)item
provideDataForType: (NSString*)type;
Availability: MacOS-X 10.6.0
Description forthcoming.
Up