Platforms to show: All Mac Windows Linux Cross-Platform

NSPasteboardItemMBS class

Type Topic Plugin Version macOS Windows Linux iOS Targets
class Clipboard MBS MacBase Plugin 13.1 ✅ Yes ❌ No ❌ No ❌ No Desktop, Console & Web
NSPasteboardItem is a generic class to represent an item on a pasteboard.
Example
dim n as new NSPasteboardItemMBS

dim type as string = NSPasteboardmbs.NSPasteboardTypeString
n.stringForType(type) = "Hello World"
MsgBox n.stringForType(type)

There are three main uses for an NSPasteboardItem object:

Providing data on the pasteboard.
You can create one or more pasteboard items, set data or data providers for types, and write to them pasteboard.

Customizing data already on the pasteboard.
As a delegate or subclass, you can retrieve the pasteboard items currently on the pasteboard, read the existing types and data and set new data and data providers for types as needed.

Retrieving data from the pasteboard.
You can retrieve pasteboard items from the pasteboard then read the data for types you're interested in.

A pasteboard item can be associated with a single pasteboard. When you create an item, it can be written to any pasteboard. When you pass an item to a pasteboard in writeObjects, that item becomes bound to the pasteboard it was written to. When you retrieve items from a pasteboard using pasteboardItems, the returned items are associated with the messaged pasteboard. Passing an item that is already associated with a pasteboard into writeObjects: causes an exception to be raised.

Pasteboard items are intended to be used during a single pasteboard interaction, not held onto and used repeatedly. A pasteboard item is only valid until the owner of the pasteboard changes.

Important: If a pasteboard item is stale because the pasteboard owner has changed, it returns nil or false values from its methods.

This class has no sub classes.

Some methods using this class:

Some events using this class:

Some examples using this class:

Blog Entries


The items on this page are in the following plugins: MBS MacBase Plugin.


NSPasteboardItemDataProviderMBS   -   NSPasteboardMBS


The biggest plugin in space...