Home | History | Annotate | Download | only in Interfaces

Lines Matching full:pasteboard

194         @abstract Returns a URL from a pasteboard
195 @param pasteboard The pasteboard with a URL
196 @result A URL if the pasteboard has one. Nil if it does not.
197 @discussion This method differs than NSURL's URLFromPasteboard method in that it tries multiple pasteboard types
198 including NSURLPboardType to find a URL on the pasteboard.
199 + (NSURL *)URLFromPasteboard:(NSPasteboard *)pasteboard;
201 HRESULT URLFromPasteboard([in] IDataObject* pasteboard, [out, retval] BSTR* url);
205 @abstract Returns a URL title from a pasteboard
206 @param pasteboard The pasteboard with a URL title
207 @result A URL title if the pasteboard has one. Nil if it does not.
208 @discussion This method returns a title that refers a URL on the pasteboard. An example of this is the link label
210 + (NSString *)URLTitleFromPasteboard:(NSPasteboard *)pasteboard;
212 HRESULT URLTitleFromPasteboard([in] IDataObject* pasteboard, [out, retval] BSTR* urlTitle);
609 @abstract Returns the pasteboard types that WebView can use for the current selection
616 @abstract Writes the current selection to the pasteboard
617 @param types The types that WebView will write to the pasteboard
618 @param pasteboard The pasteboard to write to
619 - (void)writeSelectionWithPasteboardTypes:(NSArray *)types toPasteboard:(NSPasteboard *)pasteboard;
621 HRESULT writeSelectionWithPasteboardTypes([in, size_is(cTypes)] BSTR* types, [in] int cTypes, [in] IDataObject* pasteboard);
625 @abstract Returns the pasteboard types that WebView can use for an element
633 @abstract Writes an element to the pasteboard
634 @param element The element to write to the pasteboard
635 @param types The types that WebView will write to the pasteboard
636 @param pasteboard The pasteboard to write to
637 - (void)writeElement:(NSDictionary *)element withPasteboardTypes:(NSArray *)types toPasteboard:(NSPasteboard *)pasteboard;
639 HRESULT writeElement([in] IPropertyBag* elementDictionary, [in, size_is(cWithPasteboardTypes)] BSTR* withPasteboardTypes, [in] int cWithPasteboardTypes, [in] IDataObject* pasteboard);